-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·41 lines (33 loc) · 1.01 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
[project]
name = "hairloom"
version = "0.0.9"
authors = [
{ name="Seongmin Choi", email="[email protected]" },
]
description = "A package to analyze split reads of long read data"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/shahcompbio/hairloom"
Documentation = "https://readthedocs.org/projects/hairloom"
Issues = "https://github.com/shahcompbio/hairloom/issues"
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# Configuration for setuptools_scm (empty for now)
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
dev = ["pytest"]
[project.scripts]
hairloom = "hairloom.cli:cli"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]