-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.48 KB
/
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
48
49
50
51
52
53
54
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "df_file_interchange"
authors = [{name = "Esmé Maxwell", email = "[email protected]"}]
description = "Ensures exact round-trip saves with Pandas (CSV/Parquet) and storage of validatable metadata"
readme = "README.md"
dynamic = ["version"]
requires-python = ">= 3.10"
dependencies = [
"pydantic >= 2.7, < 3",
"pydantic-settings",
"numpy >= 1.26.4, < 2",
"pandas >= 2.2.2, < 3",
"pyarrow >= 16.1.0, < 17",
"loguru >= 0.7.2, < 1",
"pyyaml >= 6.0.1, < 7",
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: BSD License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: File Formats",
]
[project.optional-dependencies]
test = [
"pytest >= 8.2.0",
]
[project.urls]
Home = "https://github.com/EXIOBASE/df_file_interchange"
Issues = "https://github.com/EXIOBASE/df_file_interchange/issues"
Documentation = "https://ntnu-indecol.github.io/df_file_interchange/"