forked from biolab/orange3-prototypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.22 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
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.4.5'
ENTRY_POINTS = {
'orange3.addon': (
'prototypes = orangecontrib.prototypes',
),
# 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/datafusion/widgets/__init__.py
'Prototypes = orangecontrib.prototypes.widgets',
),
}
if __name__ == '__main__':
setup(
name="Orange3-Prototypes",
description="Prototype Orange widgets — only for the brave.",
version=VERSION,
author='Bioinformatics Laboratory, FRI UL',
author_email='[email protected]',
url='https://github.com/biolab/orange3-prototypes',
keywords=(
'orange3 add-on',
),
packages=find_packages(),
package_data={
"orangecontrib.prototypes.widgets": ["icons/*.svg"],
},
install_requires=[
'Orange3',
],
entry_points=ENTRY_POINTS,
namespace_packages=['orangecontrib'],
include_package_data=True,
zip_safe=False,
)