forked from hostviralnetworks/nampy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 665 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 665 Bytes
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
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
__version = 'a0.0.0'
setup(
name = "nampy",
version = __version,
packages = find_packages(),
zip_safe = False,
#scripts = [''],
#setup_requires = [],
#install_requires = ['myitem>=0.1'],
extras_require = {},
package_data = {'': ['*.txt', '*.html','LICENSE','README','data/*','examples/*py']},
author = "Brian J Schmidt",
author_email = "brianjschmidt@gmail.com",
description = "",
license = "GPL V3.0",
keywords = "systems biology networks omics",
url = "",
test_suite = "",
long_description = "",
)