-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
34 lines (29 loc) · 971 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["vale"]
[project]
name="vale"
# This version corresponds to the original Vale's version, plus a 4th number to
# account for fixes to this package. That 4th number is needed because PyPi
# doesn't allow to re-release or upload deleted versions, every uploaded
# version must be unique.
version = "3.9.3.0"
authors = [
{ name="Dani Perez"},
]
description = "Install and use Vale (grammar & style check tool) in python environments."
readme = "README.md"
license = { text="MIT" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/daniperez/vale-python-package"
"Bug Tracker" = "https://github.com/daniperez/vale-python-package/issues"
[project.scripts]
vale = "vale.main:main"