forked from vanheeringen-lab/seq2science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (29 loc) · 1.14 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
[project]
name = "seq2science"
packages = ["seq2science"]
package_data = "{'seq2science':['envs/*', 'imgs/*', 'rules/*', 'schemas/*', 'schemas/*/*', 'scripts/*', 'scripts/**/*', 'workflows/*/*']}"
include_package_data = true
description = "seq2science: easy pre-processing of ngs data."
author = [
"Maarten van der Sande <[email protected]>",
"Siebren Frölich <[email protected]>"]
license = "MIT"
license_file = "LICENSE"
url = "https://vanheeringen-lab.github.io/seq2science"
scripts = ["bin/seq2science", "bin/deseq2science"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"]
python_requires = ">3.6"
[build-system]
requires = ["setuptools==59.4.0", "wheel", "toml"]
build-backend = "setuptools.build_meta"
# flake8 does not support pyproject.toml (yet?!)
# [flake8] ...