-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
79 lines (71 loc) · 1.94 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
[tool.black]
target-version = ["py311"]
preview = true
[tool.ruff]
target-version = "py311"
fix = true
select = ["ALL"]
unfixable = ["ERA"]
[tool.ruff.pydocstyle]
convention = "google"
[project]
name = "arango_export"
version = "2023.6"
description = "Export documents from ArangoDB collections as JSON and CSV."
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE.md"}
keywords = ["arango", "export", "database", "json", "csv"]
authors = [
]
maintainers = [
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: Other",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"polars",
"pyArango",
]
# dynamic = ["version", "description"]
# [project.optional-dependencies]
# gui = ["PyQt5"]
# cli = [
# "rich",
# "typer",
# ]
[project.urls]
Homepage = "https://cosmo.red"
Documentation = "https://github.com/cosmojg"
Repository = "https://github.com/cosmojg/dots.git"
Changelog = "https://github.com/cosmojg/dots/blob/main/README.md"
# [project.scripts]
# arango_export-cli = "arango_export:main_cli"
#
# [project.gui-scripts]
# arango_export-gui = "arango_export:main_gui"
#
# [project.entry-points."arango_export.magical"]
# tomatoes = "arango_export:main_tomatoes"