forked from django-import-export/django-import-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
84 lines (77 loc) · 2.29 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
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
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=7.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-import-export"
authors = [
{name = "Bojan Mihelač", email = "[email protected]"},
]
maintainers = [
{name = "Matthew Hegarty", email = "[email protected]"},
]
description = "Django application and library for importing and exporting data with included admin integration."
keywords = ["django", "import", "export"]
license = {file = "LICENSE"}
requires-python = ">=3.9"
readme = "README.rst"
dynamic = ["version"]
classifiers = [
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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 :: Only",
"Topic :: Software Development",
]
dependencies = [
"diff-match-patch==20241021",
"Django>=4.2",
"tablib==3.7.0"
]
[project.optional-dependencies]
all = [
"tablib[all]"
]
cli = ["tablib[cli]"]
ods = ["tablib[ods]"]
pandas = ["tablib[pandas]"]
xls = ["tablib[xls]"]
xlsx = ["tablib[xlsx]"]
yaml = ["tablib[yaml]"]
docs = [
"sphinx==8.1.3",
"sphinx-rtd-theme==3.0.1"
]
tests = [
"psycopg2-binary==2.9.10",
"mysqlclient==2.2.5",
"chardet==5.2.0",
"pytz==2024.2",
"memory-profiler==0.61.0",
"django-extensions==3.2.3",
"coverage==7.6.4",
"tablib[all]>=3.7.0",
"setuptools-scm==8.1.0",
]
[project.urls]
Documentation = "https://django-import-export.readthedocs.io/en/stable/"
Repository = "https://github.com/django-import-export/django-import-export"
Changelog = "https://github.com/django-import-export/django-import-export/blob/main/docs/changelog.rst"
[tool.setuptools]
platforms = ["OS Independent"]
license-files = ["LICENSE", "AUTHORS"]
[tool.setuptools_scm]
write_to = "import_export/_version.py"
local_scheme = "no-local-version"
[tool.isort]
profile = "black"