-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
103 lines (83 loc) · 3.06 KB
/
Copy pathsetup.py
File metadata and controls
103 lines (83 loc) · 3.06 KB
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
98
99
100
101
102
103
#!/usr/bin/env python
from os import path, walk
import sys
from setuptools import setup, find_packages
NAME = "Orange3-sma"
VERSION = "0.3.1"
DESCRIPTION = "Provides widgets for social media analytics"
README_FILE = path.join(path.dirname(__file__), 'README.md')
LONG_DESCRIPTION = open(README_FILE).read()
LICENSE = "BSD"
KEYWORDS = (
# [PyPi](https://pypi.python.org) packages with keyword "orange3 add-on"
# can be installed using the Orange Add-on Manager
'orange3 add-on',
'orange3-sma',
)
PACKAGES = find_packages()
PACKAGE_DATA = {
'orangecontrib.sma': ['tutorials/*.ows'],
'orangecontrib.sma.widgets': ['icons/*'],
}
DATA_FILES = [
# Data files that will be installed outside site-packages folder
]
INSTALL_REQUIRES = [
'Orange3', 'orange3-text', 'whoosh', 'amcatclient>=3.4.11', 'progressmonitor>=0.5'
]
ENTRY_POINTS = {
# Entry points that marks this package as an orange add-on. If set, addon will
# be shown in the add-ons manager even if not published on PyPi.
'orange3.addon': (
'Social Media Analytics = orangecontrib.sma',
),
# 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
'Social Media Analytics = orangecontrib.sma.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/example/widgets/__init__.py
'Social Media Analytics = orangecontrib.sma.widgets',
),
#Register widget help
"orange.canvas.help": (
'html-index = orangecontrib.sma.widgets:WIDGET_HELP_PATH',)
}
NAMESPACE_PACKAGES = ["orangecontrib"]
TEST_SUITE = "orangecontrib.sma.tests.suite"
def include_documentation(local_dir, install_dir):
global DATA_FILES
if 'bdist_wheel' in sys.argv and not path.exists(local_dir):
print("Directory '{}' does not exist. "
"Please build documentation before running bdist_wheel."
.format(path.abspath(local_dir)))
sys.exit(0)
doc_files = []
for dirpath, dirs, files in walk(local_dir):
doc_files.append((dirpath.replace(local_dir, install_dir),
[path.join(dirpath, f) for f in files]))
DATA_FILES.extend(doc_files)
if __name__ == '__main__':
include_documentation('doc/build/html', 'help/orange3_SMA')
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license=LICENSE,
packages=PACKAGES,
package_data=PACKAGE_DATA,
data_files=DATA_FILES,
install_requires=INSTALL_REQUIRES,
entry_points=ENTRY_POINTS,
keywords=KEYWORDS,
namespace_packages=NAMESPACE_PACKAGES,
test_suite=TEST_SUITE,
include_package_data=True,
zip_safe=False,
)