forked from openwsn-berkeley/coap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.49 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
from distutils.core import setup
# retrieve the version number
from coap import coapVersion
VERSION = '.'.join([str(v) for v in coapVersion.VERSION])
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
with open('COPYING.txt') as f:
LICENSE = f.read()
setup(
name = "coap",
packages = ["coap"],
version = VERSION,
author = "Thomas Watteyne",
author_email = "[email protected]",
description = "A CoAP Python library",
long_description = LONG_DESCRIPTION,
url = "http://www.openwsn.org/",
keywords = ["CoAP","Internet of Things","IETF CORE"],
license = LICENSE,
platforms = ['platform-independent'],
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Communications",
"Topic :: Home Automation",
"Topic :: Internet",
#"Topic :: Internet :: Proxy Servers",
#"Topic :: Internet :: WWW/HTTP :: Browsers",
#"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)