-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 979 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 979 Bytes
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
[project]
name = "bio_agptools"
version = "0.0.3"
authors = [
{ name="Edward S. Ricemeyer", email="edward.ricemeyer@gmail.com" },
]
description = "Tools for working with agp files"
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = ["screed", "pyfaidx"]
[project.optional-dependencies]
dev = ["bumpver", "pip-tools", "mypy", "ruff"]
test = ["pytest", "pytest-cov", "pytest-html", "genbadge[all]", "mypy", "ruff"]
docs = ["mkdocs", "mkdocs-material", "mkdocstrings", "mkdocstrings-python", "pygments"]
[project.scripts]
agptools = "agp.agptools:main"
[project.urls]
Homepage = "https://github.com/WarrenLab/agptools"
Issues = "https://github.com/WarrenLab/agptools/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.mypy]
ignore_missing_imports = true
[tool.setuptools]
packages = ["agp"]