forked from chapmanb/cloudbiolinux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 643 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
"""Install cloudbiolinux install libraries for external use.
This is not needed for running fabric files, but is useful for
reusing code.
"""
from setuptools import setup, find_packages
setup(name = "cloudbiolinux",
version = "0.3a",
author = "Brad Chapman",
author_email = "chapmanb@50mail.com",
description = "configure virtual (or real) machines with tools for biological analyses",
license = "MIT",
url = "http://cloudbiolinux.org",
packages = find_packages(),
scripts = [],
install_requires = [
"PyYAML >= 3.09",
"fabric >= 1.1.1"]
)