-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
21 lines (19 loc) · 938 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name = 'seqenv',
version = '1.3.0',
description = 'Assign environment ontology (EnvO) terms to DNA sequences',
license = 'MIT',
url = 'https://github.com/xapple/seqenv',
download_url = 'https://github.com/xapple/seqenv/tarball/1.2.9',
author = 'Lucas Sinclair',
author_email = '[email protected]',
long_description = open('README.md').read(),
long_description_content_type = 'text/markdown',
classifiers = ['Topic :: Scientific/Engineering :: Bio-Informatics'],
packages = find_packages(),
include_package_data = True,
scripts = ['seqenv/seqenv'],
install_requires = ['numpy', 'matplotlib', 'biopython', 'sh', 'pandas', 'tqdm', 'biom-format',
'requests', 'pygraphviz', 'networkx', 'Orange-Bioinformatics'],
)