-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (38 loc) · 1.46 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
from setuptools import setup, find_packages
setup(
name="LabPype",
version="0.7.8",
description="A Framework for Creating Pipeline Software",
url="https://github.com/NCBI-Hackathons/LabPype",
author="YZ",
author_email="",
license="GPL-3.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: GTK",
"Environment :: MacOS X :: Cocoa",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Widget Sets",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
keywords="Pipeline Workflow Widget Bioinformatics GUI",
packages=find_packages() + ["labpype.lang", "labpype.builtin.icon"],
package_data={
"labpype.builtin.icon": ["*.png"],
"labpype.lang" : ["*.json"],
},
install_requires=["dynaui"],
zip_safe=False,
)