forked from trunet/txXBee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.09 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
#!/usr/bin/env python
"""
txXBee installation script
"""
from setuptools import setup
import os
import sys
import subprocess
import txXBee
setup(
name = "txXBee",
version = txXBee.__version__,
author = "Wagner Sartori Junior",
author_email = "[email protected]",
url = "http://github.com/trunet/txxbee",
description = "XBee Protocol for Twisted",
scripts = [],
license="COPYING",
packages = ["txXBee"],
install_requires = ['XBee'],
long_description = """XBee os an easy-to-implement embedded short- and long-range wireless modules leveraging industry standard and cutting-edge designs for global flexibility from http://www.digi.com/.
This library implements txXBee for the Twisted Python framework.
""",
classifiers = [
"Framework :: Twisted",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Topic :: Communications",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
)