-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 1011 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
[tool.poetry]
name = "cacheing"
version = "0.1.1"
description = "a performant python cacheing library"
authors = ["Blake Reid <breid48@uwo.ca>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/breid48/cacheing"
repository = "https://github.com/breid48/cacheing"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [{include = "cacheing", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
importlib = "^1.0.4"
numpy = "^1.23.5"
pandas = "^1.5.2"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/breid48/cacheing/issues/"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"