-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1011 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 1011 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='NarrowBand',
version='0.2.1',
author='Dominik Fehr',
author_email='dominik@fe.hr',
maintainer='Andreas Schmidt',
maintainer_email='andreas.schmidt@cassini.de',
packages=['narrowband',],
url='http://pypi.python.org/pypi/NarrowBand/',
license='Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License',
description='NarrowBand library',
long_description=open('README.md').read(),
install_requires=["pyserial >= 3.4",],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'License :: Other/Proprietary License',
'Programming Language :: Python',
],
keywords='nb1 m1 nb-iot iot lte narrowband cat-nb1 cat-m1',
)