forked from henningth/dragino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 897 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="dragino",
version="0.0.4",
author="Philip Basford",
author_email="[email protected]",
description="A wrapper for the dragino LoRa/GPS HAT",
long_description=long_description,
long_description_content_type="text/markdown",
url = "https://github.com/daq-tools/dragino",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)'
],
keywords="Dragino LoRa LoRaWAN",
platforms='any',
python_requires='>=3.3, <4',
install_requires=['configobj', 'spidev', 'rpi-gpio', 'pycrypto'],
packages=setuptools.find_packages(),
)