forked from RightBrain-Networks/auto-semver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 1.12 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 = "semver"
authors = [
{ name = "RightBrain Networks", email = "[email protected]"}
]
description = "Automatic Semantic Versioner"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["Semantic", "Version", "Git", "Auto-Versioning"]
license = {file = "license.txt"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
# Development Status
"Development Status :: 3 - Alpha",
# Audience
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Build Tools"
]
dependencies = [
"toml"
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/RightBrain-Networks/auto-semver"
repository = "https://github.com/RightBrain-Networks/auto-semver"
[project.scripts]
semver = "semver:main"
semver_get_version = "semver.get_version:main"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["contrib*", "docs*", "test*"]