-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 1.09 KB
/
setup.py
File metadata and controls
35 lines (34 loc) · 1.09 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
from __future__ import absolute_import
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="aurorapy",
version="0.2.6",
description='Python implementation of Aurora Protocol',
author="E.Va Energie Valsabbia",
author_email="it@energievalsabbia.it",
maintainer='Claudio Catterina',
maintainer_email='ccatterina@energievalsabbia.it',
license='MIT',
packages=['aurorapy'],
url='https://gitlab.com/energievalsabbia/aurorapy',
install_requires=[
'pyserial>=3.2.1',
'future>=0.16.0',
],
classifiers=[
# 'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Programming Language :: Python',
]
)