FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
webthing-python/setup.py at master · WebThingsIO/webthing-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
WebThingsIO
/
webthing-python
Public
Notifications
You must be signed in to change notification settings
Fork
36
Star
175
Code
Issues
2
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
webthing-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
48 lines (43 loc) · 1.48 KB
Breadcrumbs
webthing-python
/
setup.py
Copy path
File metadata and controls
48 lines (43 loc) · 1.48 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
47
48
"""A setuptools based setup module."""
from
setuptools
import
setup
,
find_packages
from
codecs
import
open
from
os
import
path
import
sys
here
=
path
.
abspath
(
path
.
dirname
(
__file__
))
# Get the long description from the README file.
with
open
(
path
.
join
(
here
,
'README.rst'
),
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
'webthing'
,
version
=
'0.15.0'
,
description
=
'HTTP Web Thing implementation'
,
long_description
=
long_description
,
url
=
'https://github.com/WebThingsIO/webthing-python'
,
author
=
'WebThingsIO'
,
author_email
=
'team@webthings.io'
,
keywords
=
'iot web thing webthing'
,
packages
=
find_packages
(
exclude
=
[
'contrib'
,
'docs'
,
'tests'
]),
install_requires
=
[
'ifaddr>=0.1.0'
,
'jsonschema>=3.2.0'
,
'pyee>=8.1.0'
,
'tornado>=6.1.0'
,
'zeroconf>=0.28.0'
,
],
classifiers
=
[
'Development Status :: 4 - Beta'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
'Programming Language :: Python :: 3.9'
,
],
license
=
'MPL-2.0'
,
project_urls
=
{
'Source'
:
'https://github.com/WebThingsIO/webthing-python'
,
'Tracker'
:
'https://github.com/WebThingsIO/webthing-python/issues'
,
},
python_requires
=
'>=3.5, <4'
,
)
Back
|
FazBrowse Home
|
New Git URL