forked from evangelosmeklis/peepdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.toml
52 lines (47 loc) · 1.3 KB
/
project.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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "peepdb"
version = "0.1.4"
description = "CLI tool to view database tables fast"
authors = [
{name = "Evangelos Meklis", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.9"
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"mysql-connector-python>=9.0.0",
"psycopg2-binary>=2.9.9",
"pymysql>=1.1.1",
"mariadb",
"cryptography>=43.0.0",
"tabulate>=0.8.9",
"click>=8.0.0",
]
[project.optional-dependencies]
dev = [
"coverage>=7.6.1",
"pytest>=8.3.2",
"pytest-cov>=5.0.0",
]
[project.urls]
Homepage = "https://github.com/PeepDB-dev/peepdb"
"Bug Tracker" = "https://github.com/PeepDB-dev/peepdb/issues"
[project.scripts]
peepdb = "peepdb.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["peepdb*"]
exclude = ["tests*"]