-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (29 loc) · 1.15 KB
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 cami_amber.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 = 'support@cami-challenge.org',
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'
]
)