-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
51 lines (44 loc) · 1.73 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = [
"setuptools >= 64",
"setuptools_scm[toml] >= 8",
"setuptools_scm_git_archive",
"wheel >= 0.29.0",
]
build-backend = 'setuptools.build_meta'
[project]
name = 'eva_sub_cli'
description = 'EBI EVA - validation and submission command line tool'
dynamic = ["version", 'requires-python', 'dependencies']
readme = 'README.md'
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Communications :: File Sharing',
'License :: OSI Approved :: Apache Software License',
]
[project.scripts]
'eva-sub-cli.py'='eva_sub_cli.executables.cli:main'
'check_fasta_insdc.py'='eva_sub_cli.executables.check_fasta_insdc:main'
'check_metadata_semantics.py'='eva_sub_cli.executables.check_metadata_semantics:main'
'samples_checker.py'='eva_sub_cli.executables.samples_checker:main'
'xlsx2json.py'='eva_sub_cli.executables.xlsx2json:main'
'trim_down.py'='eva_sub_cli.executables.trim_down:main'
[tool.setuptools]
packages = ['eva_sub_cli', 'eva_sub_cli.exceptions', 'eva_sub_cli.executables', 'eva_sub_cli.validators']
[tool.setuptools.package-data]
'eva_sub_cli'=['nextflow/*', 'etc/*', 'jinja_templates/*']
[tool.setuptools.dynamic]
dependencies = {file = 'requirements.txt'}
[tool.setuptools_scm]
write_to = 'eva_sub_cli/_version.py'