-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (69 loc) · 2.28 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
[build-system]
requires = ["setuptools",]
build-backend = "setuptools.build_meta"
[project]
name = "fb_export"
authors = [
{name = "Inus Scheepers", email = "[email protected]"}
]
description = "Export Firebird database to CSV, JSON or other pandas format from dataframe"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pandas",
"fdb",
"firebird-base",
"firebird-driver",
"firebird-lib",
]
license = { file = "LICENSE" }
keywords = ["Firebird", "Database", "JSON", "pandas", "CSV", "export", "dataframe" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Framework :: Pytest",
"Topic :: Software Development",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Utilities",
"Topic :: File Formats :: JSON",
"Topic :: File Formats",
]
[project.urls]
Homepage = "https://github.com/inus/firebird-export"
Repository = "https://github.com/inus/firebird-export.git"
Issues = "https://github.com/inus/firebird-export/issues"
Changelog = "https://github.com/inus/firebird-export/CHANGELOG.md"
[tool.pytest.ini_options]
testpaths = "test"
minversion = "6.0"
addopts = "-v -ra -q"
log_cli = true
log_cli_level = "INFO"
log_format = "%(asctime)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
#filterwarnings = "ignore"
#norecursedirs = docs build
[project.scripts]
fb_export = "fb_export.fb_export:main"
[tool.setuptools]
package-dir = {"fb_export" = "src"}
[tool.setuptools.dynamic]
version = {attr = "fb_export.about.VERSION"}