forked from biolab/monroe-anal
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (49 loc) · 1.63 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
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.1.4'
if __name__ == '__main__':
setup(
name="ricercando",
description="Utility library for querying, analyzing, and visualizing MONROE data",
version=VERSION,
author='UL FRI, Biolab',
url='https://github.com/ivek1312/ricercando',
keywords=('orange3 add-on'),
test_suite='ricercando.tests',
packages=[
'ricercando',
],
package_data={
'ricercando': [
'orange_widgets/icons/*',
'orange_widgets/*',
],
},
include_package_data=False,
setup_requires=[
'setuptools_git >= 0.3',
],
install_requires=[
'Orange3',
'numpy',
'pandas >= 0.19.0',
'ipython',
'influxdb',
],
entry_points={
'orange3.addon': ('monroe = ricercando',),
'orange.widgets': ('MONROE = ricercando.orange_widgets',),
},
classifiers=[
'Framework :: IPython',
'Framework :: Jupyter',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Science/Research',
],
zip_safe=False,
)