-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (39 loc) · 1017 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
43
44
45
46
47
[project]
name = "cache-pandas"
version = "1.0.0"
description = "Easily cache pandas DataFrames to file and in memory."
authors = [
{ name = "Andrew Sansom", email = "[email protected]" },
]
license = { "text" = "MIT" }
readme = "README.md"
requires-python = ">=3.7"
keywords = ["pandas", "cache", "csv"]
classifiers = [
"Topic :: Software Development",
"Development Status :: 3 - Alpha"
]
dependencies = [
"pandas"
]
[project.optional-dependencies]
dev = [
"black",
"freezegun",
"isort",
]
[project.urls]
homepage = "https://github.com/qthequartermasterman/cache-pandas"
documentation = "https://github.com/qthequartermasterman/cache-pandas"
repository = "https://github.com/qthequartermasterman/cache-pandas"
[build-system]
requires = [
"setuptools >= 35.0.2",
"setuptools_scm >= 2.0.0, <3"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["cache_pandas"]
[tool.black]
line-length = 120
target_version = ['py38', 'py39', 'py310', 'py311']