forked from PyTables/PyTables
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
134 lines (114 loc) · 3.54 KB
/
pyproject.toml
File metadata and controls
134 lines (114 loc) · 3.54 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[build-system]
# keep in sync with requirements.txt
requires = [
"setuptools >=61.0.0",
"wheel",
"oldest-supported-numpy",
"packaging",
"py-cpuinfo",
"Cython >=0.29.32",
# Included here for seamless wheel builds.
# Packagers can choose to replace it by externally provided
# c-blosc2 library and headers
"blosc2 >=2.0.0,!=2.2.1,!=2.2.2",
]
build-backend = "setuptools.build_meta"
# [build-system]
# build-backend = "mesonpy"
# requires = [
# "meson-python",
# "wheel",
# "oldest-supported-numpy",
# "packaging",
# "py-cpuinfo",
# "Cython >=0.29.32",
# # for seamless wheel builds. Packagers can choose to replace
# # it by externally provided c-blosc2 library and headers
# "blosc2 >=2.0.0",
# ]
[project]
name = "tables"
dynamic = [ "version" ]
description = "Hierarchical datasets for Python"
requires-python = ">=3.8"
license = { text = "BSD 3-Clause License" }
keywords = [ "hdf5" ]
authors = [
{ name = "Francesc Alted" },
{ name = "Ivan Vilata" },
{ name = "Antonio Valentino" },
{ name = "Anthony Scopatz" },
{ name = "et al." },
{ email = "pytables@pytables.org" },
]
maintainers = [
{ name = "PyTables maintainers", email = "pytables@pytables.org" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
]
# Keep in sync with tables/req_versions.py and user doc
dependencies = [
"numpy >= 1.19.0",
"numexpr >= 2.6.2",
"packaging",
"py-cpuinfo",
]
[project.optional-dependencies]
doc = [
"sphinx >= 1.1",
"sphinx_rtd_theme",
"numpydoc",
"ipython",
]
[project.readme]
text = """
PyTables is a package for managing hierarchical datasets and
designed to efficiently cope with extremely large amounts of
data. PyTables is built on top of the HDF5 library and the
NumPy package and features an object-oriented interface
that, combined with C-code generated from Cython sources,
makes of it a fast, yet extremely easy to use tool for
interactively save and retrieve large amounts of data.
"""
content-type = "text/x-rst"
[project.urls]
homepage = "http://www.pytables.org"
documentation = "http://www.pytables.org"
repository = "https://github.com/PyTables/PyTables"
changelog = "http://www.pytables.org/release_notes.html"
tracker = "https://github.com/PyTables/PyTables/issues"
[project.scripts]
ptdump = "tables.scripts.ptdump:main"
ptrepack = "tables.scripts.ptrepack:main"
pt2to3 = "tables.scripts.pt2to3:main"
pttree = "tables.scripts.pttree:main"
[tool.setuptools]
platforms = [ "any" ]
zip-safe = false
# include-package-data = true
license-files = [ "LICENSE.txt" ]
[tool.setuptools.dynamic]
version = { attr = "tables._version.__version__" }
[tool.setuptools.packages.find]
exclude = [ "bench" ]
namespaces = false
[tool.setuptools.package-data]
tables = [ "*.dll", "*.so*", "*.dylib" ]
"tables.tests" = [ "*.h5", "*.mat" ]
"tables.nodes.tests" = [ "*.dat", "*.xbm", "*.h5" ]