|
1 | | -from setuptools import setup |
| 1 | +from setuptools import setup, find_packages |
2 | 2 |
|
3 | | -__version__ = '0.7.2' |
| 3 | +__version__ = '0.8.0' |
4 | 4 |
|
5 | 5 | setup( |
6 | 6 | name='python-tcxparser', |
7 | 7 | version=__version__, |
| 8 | + description='Simple parser for Garmin TCX files', |
| 9 | + long_description=open('README.rst').read(), |
8 | 10 | author='Vinod Kurup', |
9 | 11 | author_email='vinod@kurup.com', |
10 | | - py_modules=['tcxparser', 'test_tcxparser'], |
11 | 12 | url='https://github.com/vkurup/python-tcxparser/', |
| 13 | + packages=find_packages(include=['tcxparser']), |
| 14 | + include_package_data=True, |
12 | 15 | license='BSD', |
13 | | - description='Simple parser for Garmin TCX files', |
| 16 | + zip_safe=False, |
| 17 | + keywords='tcx', |
14 | 18 | classifiers=[ |
15 | 19 | 'Development Status :: 4 - Beta', |
16 | 20 | 'Intended Audience :: Developers', |
17 | 21 | 'License :: OSI Approved :: BSD License', |
18 | 22 | 'Operating System :: OS Independent', |
19 | 23 | 'Programming Language :: Python', |
| 24 | + 'Programming Language :: Python :: 2', |
| 25 | + 'Programming Language :: Python :: 2.7', |
| 26 | + 'Programming Language :: Python :: 3', |
| 27 | + 'Programming Language :: Python :: 3.5', |
20 | 28 | 'Topic :: Software Development :: Libraries :: Python Modules', |
21 | 29 | ], |
22 | | - long_description=open('README.md').read(), |
23 | 30 | install_requires=[ |
24 | 31 | "lxml", |
25 | 32 | ], |
26 | | - test_suite="test_tcxparser", |
| 33 | + test_suite="tests", |
27 | 34 | ) |
0 commit comments