-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
36 lines (34 loc) · 952 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
34
35
36
from setuptools import setup
setup(
name='cp4pc',
version='0.1',
author='Multiple Contributors',
author_email='[email protected]', # should be email of pypi package maintainer
description=(
"A set of libraries designed to make a PC development environment "
"look similar to the environment present on Digi's Connectport gateway "
"products."),
long_description=open('README.txt').read(),
packages=[
'rci',
],
py_modules=[
'addp',
'cwm',
'digicli',
'idigidata',
'simulator_settings',
'xbee',
'zigbee',
],
# don't include webob, just mark as dependency
install_requires=[
'webob==1.2b3',
],
license="MPL 2.0",
url="https://github.com/jordanh/cp4pc",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
],
)