-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
64 lines (55 loc) · 1.73 KB
/
pyproject.toml
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
61
62
63
64
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "faker_sqlalchemy"
description = "A Faker provider that generates data based on SQL Alchemy column types."
authors = [
{ name = "The Magnificant Nick", email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = { file = "README.rst", content-type = "text/x-rst" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Software Development :: Testing :: Mocking",
"Topic :: Utilities",
]
dependencies = [
"faker >=8.0",
"sqlalchemy >=1.3,<2.0",
]
requires-python = ">=3.7"
dynamic = ["version"]
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx-rtd-theme",
]
test = [
"black",
"tox >=4.0.b2",
]
github = [
"tox-gh-actions @ git+https://github.com/ymyzk/tox-gh-actions.git@tox4",
# Uncomment this when tox4 is officially released.
# "tox-gh-actions",
]
[project.urls]
Documentation = "https://faker-sqlalchemy.readthedocs.io/en/latest/"
Source = "https://github.com/nickswebsite/faker-sqlalchemy"
Homepage = "https://github.com/nickswebsite/faker-sqlalchemy"
[tool.black]
line-length = 120