forked from zhelev/python-afsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.43 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
"""
Setup file for the afsapi package
"""
from setuptools import setup, find_packages
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
REQUIRES = [
'aiohttp>=3.3.2',
'lxml>=3.6.0'
]
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='afsapi',
version='0.0.4',
description='Asynchronous Implementation of the Frontier Silicon API',
author='Krasimir Zhelev',
author_email='[email protected]',
keywords='afsapi async fsapi frontier silicon',
license="Apache License 2.0",
download_url='https://github.com/zhelev/python-afsapi/archive/0.0.4.zip',
url='https://github.com/zhelev/python-afsapi.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,
)