forked from galaxyproject/bioblend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 1.13 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
from setuptools import setup
from blend import __version__
setup(name = "blend",
version = __version__,
description = "BioCloudCentral.org, CloudMan, and Galaxy library",
author = "Enis Afgan",
author_email = "[email protected]",
url = "http://blend.readthedocs.org/",
install_requires = ['requests', 'simplejson', 'boto', 'nose', 'mock'],
packages = ['blend', 'blend.bcc', 'blend.cloudman', 'blend.galaxy',
'blend.galaxy.datasets', 'blend.galaxy.histories',
'blend.galaxy.libraries', 'blend.galaxy.users',
'blend.galaxy.workflows'],
license = 'MIT',
platforms = "Posix; MacOS X; Windows",
classifiers = ["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7"],
)