|
1 | 1 | """ |
2 | 2 | Setup file for the fsapi package |
3 | 3 | """ |
4 | | -from setuptools import setup |
| 4 | +from setuptools import setup, find_packages |
| 5 | + |
| 6 | +PACKAGES = find_packages(exclude=['tests', 'tests.*']) |
| 7 | + |
| 8 | +REQUIRES = [ |
| 9 | + 'requests>=2,<3' |
| 10 | + 'lxml>=3,<4' |
| 11 | +] |
| 12 | + |
| 13 | +PROJECT_CLASSIFIERS = [ |
| 14 | + 'Intended Audience :: Developers', |
| 15 | + 'License :: OSI Approved :: Apache Software License', |
| 16 | + 'Operating System :: OS Independent', |
| 17 | + 'Programming Language :: Python :: 3', |
| 18 | + 'Programming Language :: Python :: 3.0', |
| 19 | + 'Programming Language :: Python :: 3.1', |
| 20 | + 'Programming Language :: Python :: 3.2', |
| 21 | + 'Programming Language :: Python :: 3.3', |
| 22 | + 'Programming Language :: Python :: 3.4', |
| 23 | + 'Programming Language :: Python :: 3.5', |
| 24 | + 'Programming Language :: Python :: 3.6', |
| 25 | + 'Topic :: Software Development :: Libraries' |
| 26 | +] |
| 27 | + |
| 28 | + |
5 | 29 |
|
6 | 30 | setup(name='fsapi', |
7 | | - version='0.0.5', |
8 | | - description='Implementation of the Frontier Silicon API for python', |
9 | | - install_requires=['requests', 'lxml'], |
| 31 | + version='0.0.6', |
| 32 | + description='Implementation of the Frontier Silicon API for Python', |
10 | 33 | author='Krasimir Zhelev', |
11 | 34 | author_email='krasimir.zhelev@gmail.com', |
12 | | - packages=['fsapi'], |
13 | 35 | keywords='fsapi frontier silicon', |
14 | | - license='Apache 2', |
15 | | - download_url='https://github.com/zhelev/python-fsapi/archive/0.0.5.zip', |
| 36 | + license="Apache License 2.0", |
| 37 | + download_url='https://github.com/zhelev/python-fsapi/archive/0.0.6.zip', |
16 | 38 | url='https://github.com/zhelev/python-fsapi.git', |
17 | 39 | maintainer='Krasimir Zhelev', |
18 | 40 | maintainer_email='krasimir.zhelev@gmail.com', |
19 | | - zip_safe=False, |
20 | | - include_package_data=True) |
| 41 | + zip_safe=True, |
| 42 | + include_package_data=True, |
| 43 | + packages=PACKAGES, |
| 44 | + platforms='any', |
| 45 | + install_requires=REQUIRES, |
| 46 | + classifiers=PROJECT_CLASSIFIERS, |
| 47 | + ) |
0 commit comments