-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (42 loc) · 1.33 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
42
43
44
[tool.poetry]
name = "releaser"
version = "3.0.1.dev1"
description = "Automates the process of releasing a new version of some software."
authors = ["Nando Florestan <[email protected]>"]
license = "MIT"
repository = "https://github.com/nandoflorestan/releaser"
classifiers = [
# https://pypi.org/pypi?:action=list_classifiers
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
# A list of keywords (max: 5) that the package is related to
keywords = [
"release",
"releaser",
"setup",
"distribute",
"project",
]
include = ["README.rst", "CHANGES.rst"]
[tool.poetry.dependencies]
python = "^3.8"
# https://python-poetry.org/docs/dependency-specification/
bag = "5.*"
docutils = "< 0.18"
grimace = "0.1.*"
requests = "*"
wheel = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"