forked from CAMI-challenge/AMBER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 1.04 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
from setuptools import setup, find_packages
from version import __version__
import glob
def dependencies():
with open('requirements.txt', 'r') as f:
return f.read().splitlines()
setup(
name = 'cami-amber',
version = __version__,
description = 'AMBER: Assessment of Metagenome BinnERs',
author = 'CAMI',
author_email = '[email protected]',
url = 'http://cami-challenge.org',
license = 'GNU General Public License v3 or later (GPLv3+)',
scripts = glob.glob('*.py'),
install_requires = dependencies(),
packages = find_packages(),
classifiers = [
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'Operating System :: POSIX'
]
)