-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (56 loc) · 1.52 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
65
66
67
[tool.poetry]
name = "datasets-genie"
version = "0.1.1"
license = "Apache-2.0"
description = "Package for generating fake data in CSV, JSON, and XML formats. It can be used to create placeholder data for testing or demonstration purposes."
authors = ["Sai Ranga Reddy Nukala <[email protected]>"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules"
]
readme = "README-public.md"
keywords = [
"datagenerator"
]
[tool.poetry.dependencies]
python = "^3.9"
faker = "^15.3.4"
[tool.poetry.dev-dependencies]
pytest = "^7.0"
pytest-cov = "^4.0.0"
pytest-memray = "^1.3.0"
black = "^22.1.0"
bandit = "^1.7.2"
pylint-junit = "^0.3.2"
safety = "^1.10.3"
genbadge = "^1.0.6"
flake8-formatter-junit-xml = "^0.0.6"
typed-ast = "^1.5.2"
mypy = "^0.991"
coverage = "^6.3.2"
defusedxml = "^0.7.1"
wheel = "^0.38.3"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
dirty = true
[tool.pylint.MASTER]
load-plugins="pylint_junit"
[tool.pylint.General]
ignore = "version.py"
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"
disable = "fixme"
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#pylint
[tool.pylint.messages_control]
disable = "R0903"
[tool.pylint.format]
max-line-length = "88"
[tool.mypy]
warn_return_any = true
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = ""