Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
toddbirchard committed Jul 30, 2024
2 parents e41d26a + 580d411 commit 83083ca
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
[tool.poetry]
name = "pythonmyadmin"
version = "0.1.1"
description = "Lightweight GUI for modifying database tables."
description = "Web GUI for connecting to and managing databases."
authors = ["Todd Birchard <[email protected]>"]
maintainers = ["Todd Birchard <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/toddbirchard/pythonmyadmin/"
repository = "https://github.com/toddbirchard/pythonmyadmin/"
documentation = "https://github.com/toddbirchard/pythonmyadmin/"
keywords = ["Python", "SQL", "MySQL", "Postgres", "Tooling"]
keywords = [
"Python",
"SQL",
"GUI",
"Admin",
"Databases"
]

[tool.poetry.dependencies]
python = ">=3.10,<4.0"
Expand Down Expand Up @@ -44,16 +50,18 @@ run = "main:app"
[tool.poetry.urls]
issues = "https://github.com/toddbirchard/pythonmyadmin/issues"

[tool.poetry.group.dev.dependencies]
black = { version = "^23.7.0", allow-prereleases = true }

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.isort]
profile = "black"
src_paths = ["pythonmyadmin", "table", "clients", "config"]
src_paths = [
"pythonmyadmin",
"table",
"clients",
"config"
]

[tool.pylint.'MESSAGES CONTROL']
disable = "C0103,C0301,W0703,W0621"
Expand Down

0 comments on commit 83083ca

Please sign in to comment.