-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
33 lines (32 loc) · 933 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
from setuptools import setup
import datetime
setup(
name='CoAPthon3',
version='1.0.1+fb.' + datetime.datetime.now().strftime("%Y%m%d%H%M"),
packages=[
'coapthon',
'coapthon.caching',
'coapthon.client',
'coapthon.forward_proxy',
'coapthon.layers',
'coapthon.messages',
'coapthon.resources',
'coapthon.reverse_proxy',
'coapthon.server',
],
license='MIT License',
author='Giacomo Tanganelli',
author_email='[email protected]',
maintainer="Bjoern Freise",
maintainer_email="[email protected]",
url="https://github.com/mcfreis/CoAPthon3",
description='CoAPthon is a python library to the CoAP protocol.',
scripts=[
'coapclient.py',
'coapforwardproxy.py',
'coapreverseproxy.py',
'coapserver.py',
'exampleresources.py',
],
requires=['sphinx', 'cachetools']
)