-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 822 Bytes
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
[tool.poetry]
name = "postgresqlite"
version = "0.4.5"
description = "Python package that gives you the power of a PostgreSQL server, with the convenience of the sqlite3 package."
authors = ["Frank van Viegen <pp@vanviegen.net>"]
readme = "README.md"
repository = "https://github.com/vanviegen/postgresqlite"
documentation = "https://github.com/vanviegen/postgresqlite/blob/master/README.md#Documentation"
classifiers = [
'Development Status :: 4 - Beta',
'Topic :: Database',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
]
[tool.poetry.dependencies]
python = "^3.7"
pg8000 = "^1.24.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
postgresqlite = 'postgresqlite:main'