-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
121 lines (107 loc) · 2.65 KB
/
Copy pathpyproject.toml
File metadata and controls
121 lines (107 loc) · 2.65 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
[project]
name = "dataman-engine"
version = "0.2.0"
description = "A dynamic, headless data layer framework built on Django and DRF for instant CRUD APIs and custom business logic."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Vikash G", email = "vikashgraja@gmail.com" }
]
requires-python = ">=3.12"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
keywords = ["django", "rest", "api", "crud", "headless", "generator", "scaffold"]
dependencies = [
"django>=6.0.2",
"djangorestframework>=3.15.0",
"click>=8.1.7",
"python-dotenv>=1.0.1",
"django-filter>=25.1",
"requests>=2.32.3",
"pydantic>=2.10.5",
"drf-spectacular>=0.28.0",
"dj-database-url>=2.3.0",
"inflection>=0.5.1",
"uvicorn>=0.34.0",
"cryptography>=42.0.0",
"psycopg2-binary>=2.9.13",
]
[project.scripts]
dataman = "dataman.cli:cli"
[project.urls]
Homepage = "https://github.com/vikashgraja/dataman"
Repository = "https://github.com/vikashgraja/dataman.git"
[tool.coverage.run]
branch = true
concurrency = ["multiprocessing"]
sigterm = true
[build-system]
requires = ["uv_build>=0.10.6,<0.13.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "dataman"
[dependency-groups]
dev = [
"bandit>=1.9.4",
"locust>=2.32.0",
"playwright>=1.62.0",
"pre-commit>=4.6.1",
"pytest>=9.1.1",
"pytest-cov>=7.1.0",
"ruff>=0.16.1",
"tox>=4.24.1",
"tox-uv>=1.25.0",
]
[tool.ruff]
line-length = 88
target-version = "py312"
exclude = [".venv", "venv", "__pycache__", "build", "dist", "benchmarks"]
[tool.ruff.lint]
select = [
"E",
"W",
"F",
"I",
"UP",
"B",
"C4",
"SIM",
]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.bandit]
exclude_dirs = ["tests", ".venv", "benchmarks"]
skips = ["B101"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.tox]
legacy_tox_ini = """
[tox]
env_list = py312, py313, py314
min_version = 4.0
[testenv]
runner = uv-venv-runner
dependency_groups =
dev
commands =
pytest {posargs}
"""