forked from ales-erjavec/orange-widget-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
58 lines (48 loc) · 1.53 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
#! /usr/bin/env python
from setuptools import setup, find_packages
NAME = "Oasys-Widget-Core"
VERSION = "1.0.4"
DESCRIPTION = "Core orange widget utilities"
LONG_DESCRIPTION = open("README.txt", "rt").read()
URL = "http://orange.biolab.si/"
AUTHOR = "Bioinformatics Laboratory, FRI UL"
AUTHOR_EMAIL = '[email protected]'
LICENSE = "GPLv3"
DOWNLOAD_URL = 'https://github.org/lucarebuffi/orange-widget-core'
PACKAGES = find_packages()
PACKAGE_DATA = {
"orangewidget": ["icons/*.svg", "icons/*png"],
}
SETUP_REQUIRES = (
"setuptools"
)
INSTALL_REQUIRES = (
"setuptools",
"oasys-canvas-core>=0.0.1",
)
CLASSIFIERS = (
"Development Status :: 1 - Planning",
"Environment :: X11 Applications :: Qt",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
)
if __name__ == "__main__":
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url=URL,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
packages=PACKAGES,
package_data=PACKAGE_DATA,
setup_requires=SETUP_REQUIRES,
install_requires=INSTALL_REQUIRES,
)