forked from zhelev/python-fsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (35 loc) · 1.15 KB
/
setup.py
File metadata and controls
41 lines (35 loc) · 1.15 KB
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
"""
Setup file for the fsapi package
"""
from setuptools import setup, find_packages
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
REQUIRES = [
'requests>=2,<3',
'lxml>=5,<6'
]
PROJECT_CLASSIFIERS = [
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries'
]
setup(name='fsapi',
version='0.2.3',
description='Implementation of the Frontier Silicon API for Python',
author='Krasimir Zhelev',
author_email='krasimir.zhelev@gmail.com',
keywords='fsapi frontier silicon',
license="Apache License 2.0",
download_url='https://github.com/sd-personal/python-fsapi/archive/0.2.3.zip',
url='https://github.com/sd-personal/python-fsapi.git',
maintainer='sd-personal',
zip_safe=True,
include_package_data=True,
packages=PACKAGES,
platforms='any',
install_requires=REQUIRES,
classifiers=PROJECT_CLASSIFIERS,
)