-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
52 lines (49 loc) · 1.72 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
from setuptools import setup, find_packages
NAME = 'Goldenberry'
VERSION = '1.0'
DESCRIPTION = 'A supplementary Machine Learning and Evolutionary Computation suite for Orange.'
AUTHOR = 'Nestor Andres Rodriguez, Sergio G. Rojas, District University FJC, Bogota, Colombia.'
AUTHOR_EMAIL = '[email protected], [email protected]'
URL = 'https://github.com/narg95/goldenberry'
DOWNLOAD_URL = 'https://github.com/narg95/goldenberry'
LICENSE = 'GPLv2'
KEYWORDS = (
'data mining',
'machine learning',
'artificial intelligence',
'optimization',
'evolutionary computation',
'edas',
'wkiera',
'perceptron',
'feature selection',
'orange',
'orange add-on',
)
PACKAGES = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
PACKAGE_DATA = {'': ['icons/*.svg','icons/*.png', '*.ui']}
SETUP_REQUIRES = ('setuptools',)
INSTALL_REQUIRES = ('Orange',
'setuptools',
'numpy',
'scipy')
ENTRY_POINTS = {'orange.addons': ('Goldenberry = Goldenberry'),
'orange.widgets': ('Optimization = Goldenberry.widgets.optimization','Learners = Goldenberry.widgets.learners' )}
if __name__ == '__main__':
setup(
name = NAME,
version = VERSION,
description = DESCRIPTION,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
url = URL,
download_url = DOWNLOAD_URL,
license = LICENSE,
keywords = KEYWORDS,
packages = PACKAGES,
package_data = PACKAGE_DATA,
setup_requires = SETUP_REQUIRES,
install_requires = INSTALL_REQUIRES,
entry_points = ENTRY_POINTS,
include_package_data = True,
zip_safe = False,)