-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (38 loc) · 1.06 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
48
import setuptools
_requires = [
'six',
'setuptools-scm',
'appdirs',
'twisted[tls]',
'SQLAlchemy',
'arrow',
'raspi_system',
# Node Id
'netifaces',
# System
'ifcfg',
'psutil',
# HTTP Client
'treq',
]
setuptools.setup(
name='ebs-linuxnode-core',
url='https://github.com/ebs-universe/ebs-linuxnode-core',
author='Chintalagiri Shashank',
author_email='[email protected]',
description='Twisted based linux application node core',
long_description='',
packages=setuptools.find_packages(),
install_requires=_requires,
setup_requires=['setuptools_scm'],
use_scm_version=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
],
)