-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (29 loc) · 1.14 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
32
33
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',
long_description = open('README.md').read(),
long_description_content_type="text/markdown",
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'
]
)