-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
53 lines (45 loc) · 1.21 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
[metadata]
name = subsetter
version = attr: subsetter._version.__version__
author = Mark Gordon
author_email = [email protected]
description = MySQL database subsetting CLI tool
long_description = file: README.md
long_description_content_type = text/markdown
url = http://github.com/msg555/subsetter/
classifiers =
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
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
packages =
subsetter
python_requires = >=3.8
include_package_data = True
install_requires =
sqlalchemy[mypy] ~= 2.0
pydantic ~= 2.6
pyyaml ~= 6.0
faker ~= 19.3
typing-extensions
[options.extras_require]
all =
sqlalchemy[pymysql,postgresql_psycopg2binary]
pymysql =
sqlalchemy[pymysql]
postgresql =
sqlalchemy[postgresql]
postgresql_psycopg2binary =
sqlalchemy[postgresql_psycopg2binary]
[options.package_data]
subsetter =
py.typed
[options.entry_points]
console_scripts =
subsetter = subsetter.__main__:main