-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
70 lines (64 loc) · 2 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
from setuptools import setup, find_packages
import os
NAME = "Orange3-Sensors"
DOCUMENTATION_NAME = 'Orange Sensors'
VERSION = "0.0.1"
AUTHOR = "Óscar González, Fab Lab Barcelona - IAAC"
URL = 'https://github.com/fablabbcn/orange-sensors'
DESCRIPTION = "Add-on containing Orange Sensors widgets to analyse sensor data"
LONG_DESCRIPTION = open(os.path.join(
os.path.dirname(__file__), 'README.md')).read()
LICENSE = "GNU General Public License v3"
KEYWORDS = [
'orange3 add-on',
'orange',
'data mining',
'sensors',
'Smart Citizen',
'Sensor Things API'
]
setup(
name="Orange Sensors",
version=VERSION,
author=AUTHOR,
url=URL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license=LICENSE,
packages=["orange_sensors"],
package_data={
"orange_sensors": ["icons/*"],
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
'Environment :: X11 Applications :: Qt',
'Environment :: Console',
'Environment :: Plugins',
"Development Status :: 4 - Beta",
"Topic :: Utilities",
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
],
entry_points={
"orange.widgets": "Sensors = orange_sensors",
"orange.addons": "Sensors = orange_sensors"
},
install_requires=[
"flat_table >= 1.1.1",
"pandas >= 1.4.1",
"pandas != 1.5.1",
"Orange3 >= 3.31.1",
"PyQt5",
"smartcitizen-connector == 1.2.0", #Smart Citizen connector should be fixed at a version
"nest_asyncio"
"sd-frost-sta-client"
],
keywords=KEYWORDS,
include_package_data=True,
zip_safe=False,
)