-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
60 lines (54 loc) · 1.41 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
54
55
56
57
58
59
60
[metadata]
name = drf-test-generator
version = 0.0.6
description = A Django app to generate basic tests for Django Rest Framework
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
url = https://github.com/saadmk11/drf-test-generator
author = Maksudul Haque
author_email = [email protected]
keywords =
Django
Django Rest Framework
Testing
classifiers =
Development Status :: 3 - Alpha
Natural Language :: English
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Framework :: Django :: 5.1
Programming Language :: Python :: 3 :: Only
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
[options]
packages = drf_test_generator
include_package_data = True
python_requires = >=3.8
install_requires =
django>=4.2
djangorestframework>=3.12
[options.packages.find]
where = .
[coverage:run]
branch = True
parallel = True
source =
drf_test_generator
tests
[coverage:report]
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
raise NotImplementedError
[coverage:paths]
source = .
[flake8]
max-line-length = 88