-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (46 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
48 lines (46 loc) · 1.11 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "cython", "setuptools>=77" ]
[project]
name = "dataprep"
version = "0.1.0"
description = "A small dataprep package"
readme = "README.rst"
authors = [
{ name = "Veit Schiele", email = "veit@cusy.io" },
]
requires-python = ">=3.9"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"cython",
"pandas",
]
urls."Bug Tracker" = "https://github.com/veit/dataprep/issues"
urls.Homepage = "https://github.com/veit/dataprep"
License-Expression = "BSD-3-Clause"
License-File = [ "LICENSE" ]
[dependency-groups]
dev = [
"pre-commit",
{ include-group = "docs" },
{ include-group = "tests" },
]
docs = [
"furo",
"sphinx-copybutton",
"sphinx-inline-tabs",
"sphinxext-opengraph",
]
tests = [
"coverage[toml]",
"pytest>=6",
]