diff --git a/.gitignore b/.gitignore index c9ca4a2..b258885 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.egg-info*/ *.pyc __pycache__ +dist/ # Test-related files .cache diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..dc44650 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include LICENSE +include README.md +recursive-include data *.gms diff --git a/setup.cfg b/setup.cfg index 25e73fa..af752b6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,5 @@ +[metadata] +description-file = README.md + [pytest] python_files=test_*.py diff --git a/setup.py b/setup.py index 3a4b807..08b8bca 100755 --- a/setup.py +++ b/setup.py @@ -2,8 +2,8 @@ from setuptools import setup, find_packages -setup(name='PyGDX', - version='2', +setup(name='gdx', + version='3', author='Paul Natsuo Kishimoto', author_email='mail@paul.kishimoto.name', description='GAMS Data Exchange (GDX) file access', @@ -14,5 +14,6 @@ ], tests_require=['pytest'], url='https://github.com/khaeru/py-gdx', + download_url='https://github.com/khaeru/py-gdx/tarball/3', packages=find_packages(), )