-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
48 lines (44 loc) · 1.38 KB
/
setup.cfg
File metadata and controls
48 lines (44 loc) · 1.38 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
[metadata]
name = rick-db
version = attr: rick_db.version.__version__
url = https://git.oddbit.org/OddBit/rick_db
author = João Pinheiro
description = SQL database layer
long_description = file: README.md
long_description_content_type: text/markdown
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
Programming Language :: SQL
Topic :: Database
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Documentation = https://oddbit-project.github.io/rick_db/
Source = https://github.com/oddbit-project/rick_db
[options]
python_requires = >=3.10
packages = find:
include_package_data = true
zip_safe = false
install_requires =
psycopg2>=2.9.11
toml>=0.10.1
setuptools>=75.6.0
[options.entry_points]
console_scripts =
rickdb=rick_db.cli.manage:main
[bdist_rpm]
doc_files = docs README.md
[flake8]
exclude = dist,build,.git,.tox,.env,.git
extend-ignore = E501, W504 ,F401, F403, W503, E203, E261, E201
max-line-length = 127