-
Notifications
You must be signed in to change notification settings - Fork 60
/
pyproject.toml
45 lines (41 loc) · 1.35 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
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "pandasdmx"
author = "dr-leo"
author-email = "[email protected]"
home-page = "https://github.com/dr-leo/pandasdmx"
dist-name = "pandaSDMX"
description-file = "README.rst"
requires = [
"requests >=2.26",
"lxml >= 4.8",
"pandas >= 1.3",
"pydantic >=1.9.2, < 2.0"]
requires-python = ">=3.9.6,<3.12"
keywords = "statistics, SDMX, pandas, data, economics, science"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: Apache Software License"]
[tool.flit.metadata.requires-extra]
cache = ["requests_cache >= 0.9.5"]
schema = ["appdirs >= 1.4"]
doc = ["sphinx >= 5.2",
"IPython >= 7.20"]
test = ["pytest >= 5",
"requests-mock >= 1.4"]
[tool.flit.metadata.urls]
Homepage = "https://pandasdmx.readthedocs.io/en/latest/"
[tool.flit.sdist]
include = ["LICENSE", 'README.rst']
exclude = ['pandasdmx/tests']