-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (39 loc) · 936 Bytes
/
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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.scripts]
bagel = "bagel.__main__:main"
[tool.flit.metadata]
module = "bagel"
author = "George Lesica"
author-email = "george.lesica@umontana.edu"
maintainer = "George Lesica"
maintainer-email = "george.lesica@umontana.edu"
home-page = "https://github.com/TravisWheelerLab/bagel"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Typing :: Typed",
]
description-file = "README.md"
[tool.flit.sdist]
exclude = [
".DS_Store",
".github",
".gitignore",
".nextflow*",
"*.nf",
"benchmarks",
"bin",
"Dockerfile*",
"fixtures",
"secrets.sh",
"tool",
"tools",
"utils",
"work",
]