-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (47 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
50 lines (47 loc) · 1.44 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
[project]
name = "pycrumbs"
version = "0.4.0"
description = "Tool for automatically storing information about Python processes."
authors = [
{ name = "Chris Bridge", email = "<[email protected]>" }
]
license = "MIT"
license-files = [ "LICENSE" ]
readme = "README.md"
repository = "https://github.com/CPBridge/pycrumbs"
homepage = "https://github.com/CPBridge/pycrumbs"
keywords = ["tracking", "vcs", "version control"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.10"
GitPython = ">=3.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "9.0.2"
flake8 = "7.3.0"
flake8-docstrings = "1.7.0"
flake8-polyfill = "1.0.2"
mccabe = "0.7.0"
mypy = "1.19.0"
mypy-extensions = "1.1.0"
types-setuptools = "80.9.0.20250822"
pep8-naming = "0.15.1"
py = ">=1.10.0"
pycodestyle = "2.14.0"
pydocstyle = "6.3.0"
pyflakes = "3.4.0"
ipython = ">=8.0.0"
twine = "6.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"