-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
42 lines (38 loc) · 1004 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
35
36
37
38
39
40
41
42
[tool.poetry]
name = "yamicache"
version = "0.7.3"
description = "Yet another in-memory caching package"
authors = ["Timothy McFadden <[email protected]>"]
license = "MIT"
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
repository = 'https://github.com/mtik00/yamicache'
documentation = "https://yamicache.readthedocs.io"
packages = [
{ include = "yamicache" },
]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.dev-dependencies]
click = "^8.1.3"
coverage = "^7.2.3"
flake8 = "^6.0.0"
pytest-runner = "^6.0.0"
pytest = "^7.3.0"
PyYAML = "^6.0"
Sphinx = "^6.1.3"
twine = "^4.0.2"
watchdog = "^3.0.0"
selenium = "^4.8.3"
[tool.poetry.group.dev.dependencies]
mypy = "^1.2.0"
black = "^23.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"