Skip to content

Commit 7075858

Browse files
committed
fixes for classifiers and requirements
1 parent 60bd727 commit 7075858

1 file changed

Lines changed: 36 additions & 9 deletions

File tree

setup.py

Lines changed: 36 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,47 @@
11
"""
22
Setup file for the fsapi package
33
"""
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+
529

630
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',
1033
author='Krasimir Zhelev',
1134
author_email='krasimir.zhelev@gmail.com',
12-
packages=['fsapi'],
1335
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',
1638
url='https://github.com/zhelev/python-fsapi.git',
1739
maintainer='Krasimir Zhelev',
1840
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

Comments
 (0)