-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mpwt"
dynamic = ["version"]
authors = [{name = "AuReMe", email = "[email protected]"}]
readme = "README.rst"
description = "Multiprocessing for Pathway Tools"
license = {text = "LGPL-3.0-or-later"}
requires-python = ">= 3.8"
dependencies = [
'biopython>=1.70',
'chardet>=3.0.4',
'gffutils>=0.9',
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Audience
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
# Environnement, OS, languages
'Programming Language :: Python :: 3'
]
[project.scripts]
mpwt = "mpwt.__main__:run_mpwt"
[project.urls]
Homepage = "https://github.com/AuReMe/mpwt"
Changelog = "https://github.com/AuReMe/mpwt/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ['mpwt']
package-dir = {'mpwt'= 'mpwt'}
[tool.setuptools.dynamic]
version = { attr = "mpwt.__version__" }
dependencies = {file = ["requirements.txt"]}