-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
36 lines (33 loc) · 1.55 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
34
35
36
import glob
from distutils.core import setup
from os.path import join, abspath, dirname
base_dir = abspath(dirname(__file__))
requirements_txt = join(base_dir, 'requirements.txt')
requirements = [l.strip() for l in open(requirements_txt) if l and not l.startswith('#')]
version = open(join(base_dir, 'eva_submission', 'VERSION')).read().strip()
setup(
name='eva_submission',
packages=['eva_submission', 'eva_submission.ENA_submission', 'eva_submission.xlsx', 'eva_submission.steps',
'eva_submission.biosample_submission'],
package_data={'eva_submission': ['nextflow/*', 'etc/*', 'VERSION']},
version=version,
license='Apache',
description='EBI EVA - submission processing tools',
long_description='This package contains tools used to validated broker and ingest the submission received by the '
'EVA. It is mean to be used by the EVA team and is not mean to be used externally',
url='https://github.com/EBIVariation/eva-submission',
keywords=['ebi', 'eva', 'python', 'submission'],
install_requires=requirements,
python_requires='>=3.8',
author='The EVA team',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
scripts=glob.glob(join(dirname(__file__), 'bin', '*.py'))
)