-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 922 Bytes
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 922 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
requires-python = ">=3.10"
description = "Python cli scripts for humans"
authors = [
{ name = "Jay Marcyes", email = "jay@marcyes.com" }
]
keywords = [
"cli console"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
dependencies = [
"datatypes~=0.33.0"
]
name = "captain"
dynamic = [
"version"
]
readme = "README.md"
license = "MIT"
license-files = [
"LICENSE.txt"
]
[project.urls]
Homepage = "http://github.com/jaymon/captain"
Repository = "https://github.com/Jaymon/captain"
[build-system]
requires = [
"setuptools>=62.3.0"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = [
"tests*",
"example*",
"*_test*",
"docs*"
]
include = [
"captain*"
]
[tool.setuptools.dynamic]
version = { attr = "captain.__version__" }