-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.49 KB
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
52
53
54
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fastship"
dynamic = ["version"]
description = "Local-first release CLI tools: ship-bump, ship-pypi, ship-gh"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Jeremy Howard" }]
keywords = ["release", "pypi", "github", "ghapi", "twine", "versioning"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Version Control :: Git",
]
dependencies = [
"fastcore>=1.5.29",
"fastgit>=0.0.2",
"ghapi>=1.0.5",
"packaging>=23.0",
"build>=1.0.0",
"twine>=5.0.0",
"pyyaml>=6.0",
'tomli>=2.0.0; python_version < "3.11"',
]
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
Source = "https://github.com/answerdotai/fastship"
[project.scripts]
ship-bump = "fastship.release:ship_bump"
ship-pypi = "fastship.release:ship_pypi"
ship-changelog = "fastship.release:ship_changelog"
ship-gh = "fastship.release:ship_release_gh"
ship-release = "fastship.release:ship_release"
ship-new = "fastship.release:ship_new"
ship-pr = "fastship.release:ship_pr"
[tool.setuptools.dynamic]
version = { attr = "fastship.__version__" }
[tool.setuptools.packages.find]
include = ["fastship"]