-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (47 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (47 loc) · 1.42 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
[build-system]
requires = ["setuptools>=65.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pgmonkey"
version = "4.0.0"
authors = [
{ name="Good Boy", email="pythonic@rexbytes.com" },
]
description = "A tool to assist with postgresql database connections"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10,<4.0"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"psycopg[binary]>=3.1.20,<4.0.0",
"psycopg_pool>=3.1.9,<4.0.0",
"PyYAML>=6.0.2,<7.0.0",
"chardet>=5.2.0,<6.0.0",
"tqdm>=4.64.0,<5.0.0"
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0,<10.0.0",
"pytest-asyncio>=0.21.0,<2.0.0",
"pytest-mock>=3.10.0,<4.0.0",
]
[tool.setuptools.package-data]
pgmonkey = [ "settings/app_settings.yaml", "common/templates/*"]
[project.urls]
"Homepage" = "https://pgmonkey.net"
"Repository" = "https://github.com/RexBytes/pgmonkey"
"Bug Tracker" = "https://github.com/RexBytes/pgmonkey"
[project.scripts]
pgmonkey="pgmonkey.cli.cli:main"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["src/pgmonkey/tests"]