-
Notifications
You must be signed in to change notification settings - Fork 556
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrate setup.py to pyproject.toml (#1465)
* migrate setup.py to pyproject.toml * set homepage link to https in pyproject
- Loading branch information
Showing
4 changed files
with
74 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,75 @@ | ||
[project] | ||
name = "pgcli" | ||
authors = [{ name = "Pgcli Core Team", email = "[email protected]" }] | ||
license = { text = "BSD" } | ||
description = "CLI for Postgres Database. With auto-completion and syntax highlighting." | ||
readme = "README.rst" | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: Unix", | ||
"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", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: SQL", | ||
"Topic :: Database", | ||
"Topic :: Database :: Front-Ends", | ||
"Topic :: Software Development", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
urls = { Homepage = "https://pgcli.com" } | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"pgspecial>=2.0.0", | ||
"click >= 4.1", | ||
"Pygments>=2.0", # Pygments has to be Capitalcased. WTF? | ||
# We still need to use pt-2 unless pt-3 released on Fedora32 | ||
# see: https://github.com/dbcli/pgcli/pull/1197 | ||
"prompt_toolkit>=2.0.6,<4.0.0", | ||
"psycopg >= 3.0.14; sys_platform != 'win32'", | ||
"psycopg-binary >= 3.0.14; sys_platform == 'win32'", | ||
"sqlparse >=0.3.0,<0.6", | ||
"configobj >= 5.0.6", | ||
"cli_helpers[styles] >= 2.2.1", | ||
# setproctitle is used to mask the password when running `ps` in command line. | ||
# But this is not necessary in Windows since the password is never shown in the | ||
# task manager. Also setproctitle is a hard dependency to install in Windows, | ||
# so we'll only install it if we're not in Windows. | ||
"setproctitle >= 1.1.9; sys_platform != 'win32' and 'CYGWIN' not in sys_platform", | ||
] | ||
dynamic = ["version"] | ||
|
||
|
||
[project.scripts] | ||
pgcli = "pgcli.main:cli" | ||
|
||
[project.optional-dependencies] | ||
keyring = ["keyring >= 12.2.0"] | ||
sshtunnel = ["sshtunnel >= 0.4.0"] | ||
|
||
[build-system] | ||
requires = ["setuptools>=61.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
include-package-data = false | ||
|
||
[tool.setuptools.dynamic] | ||
version = { attr = "pgcli.__version__" } | ||
|
||
[tool.setuptools.packages] | ||
find = { namespaces = false } | ||
|
||
[tool.setuptools.package-data] | ||
pgcli = [ | ||
"pgclirc", | ||
"packages/pgliterals/pgliterals.json", | ||
] | ||
|
||
[tool.black] | ||
line-length = 88 | ||
target-version = ['py38'] | ||
|