Skip to content

Commit

Permalink
PCK Configure setuptools and version
Browse files Browse the repository at this point in the history
  • Loading branch information
andsor committed Aug 20, 2015
1 parent a43a3f5 commit 3563fd1
Show file tree
Hide file tree
Showing 7 changed files with 52 additions and 623 deletions.
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

9 changes: 0 additions & 9 deletions autodocs.sh

This file was deleted.

9 changes: 0 additions & 9 deletions autotest.sh

This file was deleted.

6 changes: 3 additions & 3 deletions fssa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@
__ https://github.com/andsor/pyfssa/issues/2
"""
from __future__ import absolute_import
from ._version import get_versions

import pkg_resources
from .fssa import scaledata, quality, autoscale
__version__ = get_versions()['version']
del get_versions

__version__ = pkg_resources.get_distribution(__name__).version
222 changes: 0 additions & 222 deletions fssa/_version.py

This file was deleted.

35 changes: 1 addition & 34 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ description = Scientific Python package for finite-size scaling analysis at phas
author = Andreas Sorge
author_email = pyfssa@asorge.de
license = isc
url = http://andsor.github.io/pyfssa
url = http://pyfssa.readthedocs.org
# Comma separated list of data INSIDE your package to include.
# DO NOT prepend the package name when specifying files and folders.
package_data =
# Comma separated list of data OUTSIDE your package to include.
# Equivalent to adding files to MANIFEST.in which is not needed.
Expand All @@ -20,35 +19,3 @@ classifiers = Development Status :: 3 - Alpha,
Programming Language :: Python :: 3.4,
Topic :: Scientific/Engineering :: Mathematics,
Topic :: Scientific/Engineering :: Physics

[console_scripts]
# Add here console scripts like:
# hello_world = pyscaffold.module:function
# putup = pyscaffold.runner:run

[data_files]
# Add here data to be included which lies OUTSIDE your package, e.g.
# path/to/destination = files/to/include, others/to/include
# This is the same as adding files to MANIFEST.in which is not needed anymore.
# The destination is relative to the root of your virtual environment.
# Use ** as wildcard if you want to recursively include a pattern, e.g.
# tests/**.py would include all py-files in all subfolders of tests.
share/fssa = *.rst, *.txt

[extras_require]
# Add here additional requirements for extra features, like:
# PDF = ReportLab>=1.2, RXP

[pytest]
# Options for py.test:
# Specify command line options as you would do when invoking py.test directly.
# e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml
# in order to write a coverage file that can be read by Jenkins.
# flakes-ignore =
# doc/conf.py ALL
#
#pep8-ignore =
# doc/conf.py ALL

[aliases]
test = pytest
Loading

0 comments on commit 3563fd1

Please sign in to comment.