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