forked from agronholm/sqlacodegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (52 loc) · 1.42 KB
/
setup.cfg
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
56
57
58
59
60
[metadata]
name = sqlacodegen
description = Automatic model code generator for SQLAlchemy
long_description = file: README.rst
author = Alex Grönholm
author_email = alex.gronholm@nextday.fi
keywords = sqlalchemy
license = MIT
license_file = LICENSE
project_urls =
Bug Tracker = https://github.com/agronholm/sqlacodegen/issues
Source Code = https://github.com/agronholm/sqlacodegen
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Environment :: Console
Topic :: Database
Topic :: Software Development :: Code Generators
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
packages = find:
python_requires = >=2.7, !=3.0, !=3.1, !=3.2, !=3.3, != 3.4
install_requires =
SQLAlchemy >= 0.9.0
inflect >= 0.2.0
[options.extras_require]
test =
pytest
pytest-cov
psycopg2-binary
mysql-connector-python
[options.entry_points]
console_scripts =
sqlacodegen = sqlacodegen.main:main
[flake8]
max-line-length = 99
exclude = .tox
[tool:pytest]
addopts = -rsx --cov --tb=short
[coverage:run]
source = sqlacodegen
[coverage:report]
show_missing = true
[wheel]
universal = 1