-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
97 lines (88 loc) · 3.06 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env python
from setuptools import setup
ENTRY_POINTS = {
# Entry point used to specify packages containing tutorials accessible
# from welcome screen. Tutorials are saved Orange Workflows (.ows files).
'orange.widgets.tutorials': (
# Syntax: any_text = path.to.package.containing.tutorials
'exampletutorials = orangecontrib.wbd.tutorials',
),
# Entry point used to specify packages containing widgets.
'orange.widgets': (
# Syntax: category name = path.to.package.containing.widgets
# Widget category specification can be seen in
# orangecontrib/wbd/widgets/__init__.py
'Data Sets = orangecontrib.wbd.widgets',
),
# Register widget help
"orange.canvas.help": (
'html-index = orangecontrib.wbd.widgets:WIDGET_HELP_PATH',)
}
KEYWORDS = [
# [PyPi](https://pypi.python.org) packages with keyword "orange3 add-on"
# can be installed using the Orange Add-on Manager
"orange3 add-on",
"world bank data",
"indicator api",
]
def get_description():
with open("README.rst") as f:
return f.read()
if __name__ == '__main__':
setup(
name="Orange3-Datasets",
version="0.1.3",
license="MIT",
author="Miha Zidar",
author_email="[email protected]",
description=("Orange interface for World Bank Data Indicator and "
"Climate APIs"),
long_description=get_description(),
url="https://github.com/zidarsk8/orange3-datasets",
download_url=("https://github.com/zidarsk8/orange3-datasets/tarball/"
"0.1.3"),
packages=[
'orangecontrib',
'orangecontrib.wbd',
'orangecontrib.wbd.tutorials',
'orangecontrib.wbd.widgets',
],
package_data={
'orangecontrib.wbd': ['tutorials/*.ows'],
'orangecontrib.wbd.widgets': ['icons/*'],
},
install_requires=[
'Orange3',
'numpy',
'observable',
'simple_wbd>=0.5.1',
],
extras_require={
'doc': [
'sphinx',
'sphinx_rtd_theme',
],
'test': [
'nose',
'nose-cov',
]
},
entry_points=ENTRY_POINTS,
keywords=KEYWORDS,
namespace_packages=['orangecontrib'],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: Qt',
'Environment :: Plugins',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
],
)