-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
38 lines (34 loc) · 1.24 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
import setuptools
"""
import _version
with open('README.md', 'r') as fh:
long_description = fh.read()
with open('requirements.txt') as rf:
required = [line for line in rf.readlines()]
setuptools.setup(
name=_version.__lib_name__,
version=_version.__version__,
author=_version.__author__,
author_email=_version.__email__,
description='Arrowhead client library',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/arrowhead-f/client-library-python',
packages=setuptools.find_packages(exclude=['tests', 'examples']),
license='EPL-2.0',
install_requires=required,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)',
],
python_requires='>=3.7'
)
"""
if __name__ == '__main__':
setuptools.setup()