-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
139 lines (130 loc) · 3.61 KB
/
pyproject.toml
File metadata and controls
139 lines (130 loc) · 3.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mockachu"
version = "v1.1.0"
description = "Free open-source mock data generator with GUI and REST API. Generate realistic fake data, test data, and sample data for development, testing, API testing, and database seeding. 15+ data generators for personal, financial, geographic, and technical data."
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Mockachu Contributors"}
]
maintainers = [
{name = "Mockachu Contributors"}
]
keywords = [
"mock-data-generator", "fake-data-generator", "test-data-generator",
"dummy-data", "random-data", "sample-data", "testing", "api", "gui",
"development", "database-seeding", "json-generator", "csv-generator",
"api-testing", "qa-tools", "test-fixtures", "mock-server", "faker",
"rest-api", "swagger", "realistic-data", "bulk-data", "data-generation"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Desktop Environment",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Testing :: Mocking",
"Topic :: Utilities",
"Typing :: Typed",
]
requires-python = ">=3.8"
dependencies = [
"blinker>=1.7.0",
"click>=8.1.7",
"Flask>=3.0.3",
"flask-cors>=4.0.1",
"flask-restx>=1.3.0",
"numpy>=1.26.4",
"pandas>=2.2.2",
"python-dateutil>=2.9.0",
"pytz>=2024.1",
"requests>=2.31.0",
"ulid>=1.1",
"ujson>=5.9.0",
]
[project.optional-dependencies]
gui = [
"PyQt6>=6.7.0",
"qdarkstyle>=3.2.3",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
"pytest-xdist>=3.2.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"coverage>=7.0.0",
]
build = [
"pyinstaller>=6.0.0",
"setuptools>=61.0",
"wheel",
]
all = [
"mockachu[gui,dev,build]"
]
[project.urls]
Homepage = "https://github.com/sahzudin/mockachu"
Repository = "https://github.com/sahzudin/mockachu"
Issues = "https://github.com/sahzudin/mockachu/issues"
Documentation = "https://github.com/sahzudin/mockachu#readme"
[project.scripts]
mockachu = "mockachu.app:main"
mock-data-api = "mockachu.api:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["mockachu*"]
[tool.setuptools.package-data]
"mockachu" = [
"res/*",
"ui/res/*",
"ui/styles/*",
"localization/strings/*",
]
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.mypy]
python_version = "v1.0.0"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
addopts = "--cov=mockachu --cov-report=html --cov-report=term-missing"