-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 754 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dadi-cli"
version = "0.9.14"
requires-python = ">=3.9"
description = "A command line interface for dadi"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Xin Huang", email = "xinhuang.res@gmail.com" },
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"dadi>=2.4.3",
]
[project.scripts]
dadi-cli = "dadi_cli.__main__:main"
[project.urls]
Homepage = "https://github.com/xin-huang/dadi-cli"
[tool.hatch.version]
path = "dadi_cli/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/dadi_cli",
]