-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
93 lines (70 loc) · 1.89 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "verchew"
version = "3.4.2" # also update verchew/script.py
description = "System dependency version checker."
authors = ["Jace Browning <jacebrowning@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://pypi.org/project/verchew"
documentation = "https://verchew.readthedocs.io"
repository = "https://github.com/jacebrowning/verchew"
keywords = [
"dependencies",
"configuration management",
"continuous integration",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Testing",
"Topic :: System :: Installation/Setup",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
# Formatters
black = "^23.7"
isort = "^5.12"
# Linters
mypy = "*"
pydocstyle = "^3"
pylint = "^2"
# Testing
pytest = "^7.4"
pytest-cov = "*"
pytest-describe = "^2.1"
pytest-expecter = "^3.0"
pytest-random = "*"
scripttest = "*"
# Reports
coveragespace = "^6.0"
# Documentation
mkdocs = "^1.5.1"
pygments = "~2.15.0"
# Tooling
pyinstaller = "*"
sniffer = "*"
MacFSEvents = { version = "*", platform = "darwin" }
pync = { version = "*", platform = "darwin" }
ipython = "^7.12.0"
[tool.poetry.scripts]
verchew = "verchew.script:main"
[tool.black]
quiet = true
[tool.isort]
profile = "black"
extra_standard_library = "ConfigParser"
[build-system]
requires = ["poetry-core>=1.0"]
build-backend = "poetry.core.masonry.api"