-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
30 lines (27 loc) · 1015 Bytes
/
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
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-opal',
version = __version__,
description = 'OPAL: Open-community Profiling Assessment tooL',
author = 'CAMI',
author_email = '[email protected]',
url = 'http://cami-challenge.org',
license = 'Apache-2.0 License',
scripts = glob.glob('*.py'),
install_requires = dependencies(),
packages = find_packages(),
classifiers = [
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'Operating System :: POSIX'
]
)