forked from Seeed-Studio/ublox_lara_r2_pi_hat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 999 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
with open('package_description.rst', 'r') as f:
long_description = f.read()
requirements=['pySerial']
setup(
name='ublox-lara-r2',
version='0.0.1',
packages = find_packages(),
description='LTE Pi Hat driver using celluar module ublox lara r2 LTE Cat.1.',
long_description=long_description,
author='Lambor',
author_email='lanselambor@gmail.com',
url='https://www.github.com/Seeed-Studio/ublox_lara_r2_pi_hat',
license='MIT',
scripts=["bin/rpirtscts"],
classifiers=(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
),
keywords=['ublox lara r2', 'ublox', 'R211', 'R204', 'LTE', 'Cat.1'],
install_requires=requirements
)