-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (44 loc) · 1.28 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
from setuptools import setup
with open("README.md") as stream:
long_description = stream.read()
setup(
name="rpigw",
description="Python Raspberry Pi GSM and IQRF gateway.",
version="0.0.1",
author="Roman Ondráček",
author_email="ondracek.roman@centrum.cz",
url="https://github.com/Roman3349/rpi-gw",
package_dir={"": "src"},
packages=[
"rpigw",
"rpigw.device",
"rpigw.transport",
"rpigw.util"
],
entry_points={
"console_scripts": [
"rpigw = rpigw.__main__:main",
"rpi-gw = rpigw.__main__:main"
]
},
license="GPL v3",
long_description=long_description,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Communications",
],
dependency_links=[
"https://github.com/iqrfsdk/pylibiqrf/tarball/master#egg=pylibiqrf-0.0.1"
],
install_requires=[
"pyserial >= 3.1.1",
"PyYAML >= 3.12",
"pylibiqrf >= 0.0.1"
]
)