mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-10-31 07:57:55 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [build-system]
 | |
| build-backend = "setuptools.build_meta"
 | |
| requires = [ "setuptools>=77.0.3" ]
 | |
| 
 | |
| [project]
 | |
| name = "djangorestframework"
 | |
| description = "Web APIs for Django, made easy."
 | |
| readme = "README.md"
 | |
| license = "BSD-3-Clause"
 | |
| authors = [ { name = "Tom Christie", email = "tom@tomchristie.com" } ]
 | |
| requires-python = ">=3.10"
 | |
| classifiers = [
 | |
|   "Development Status :: 5 - Production/Stable",
 | |
|   "Environment :: Web Environment",
 | |
|   "Framework :: Django",
 | |
|   "Framework :: Django :: 4.2",
 | |
|   "Framework :: Django :: 5.0",
 | |
|   "Framework :: Django :: 5.1",
 | |
|   "Framework :: Django :: 5.2",
 | |
|   "Intended Audience :: Developers",
 | |
|   "Operating System :: OS Independent",
 | |
|   "Programming Language :: Python",
 | |
|   "Programming Language :: Python :: 3 :: Only",
 | |
|   "Programming Language :: Python :: 3.10",
 | |
|   "Programming Language :: Python :: 3.11",
 | |
|   "Programming Language :: Python :: 3.12",
 | |
|   "Programming Language :: Python :: 3.13",
 | |
|   "Programming Language :: Python :: 3.14",
 | |
|   "Topic :: Internet :: WWW/HTTP",
 | |
| ]
 | |
| dynamic = [ "version" ]
 | |
| 
 | |
| dependencies = [ "django>=4.2" ]
 | |
| urls.Changelog = "https://www.django-rest-framework.org/community/release-notes/"
 | |
| urls.Funding = "https://fund.django-rest-framework.org/topics/funding/"
 | |
| urls.Homepage = "https://www.django-rest-framework.org"
 | |
| urls.Source = "https://github.com/encode/django-rest-framework"
 | |
| 
 | |
| [tool.setuptools]
 | |
| 
 | |
| [tool.setuptools.dynamic]
 | |
| version = { attr = "rest_framework.__version__" }
 | |
| 
 | |
| [tool.setuptools.packages.find]
 | |
| include = [ "rest_framework*" ]
 | |
| 
 | |
| [tool.isort]
 | |
| skip = [ ".tox" ]
 | |
| atomic = true
 | |
| multi_line_output = 5
 | |
| extra_standard_library = [ "types" ]
 | |
| known_third_party = [ "pytest", "_pytest", "django", "pytz", "uritemplate" ]
 | |
| known_first_party = [ "rest_framework", "tests" ]
 | |
| 
 | |
| [tool.codespell]
 | |
| # Ref: https://github.com/codespell-project/codespell#using-a-config-file
 | |
| skip = "*/kickstarter-announcement.md,*.js,*.map,*.po"
 | |
| ignore-words-list = "fo,malcom,ser"
 | |
| 
 | |
| [tool.pyproject-fmt]
 | |
| max_supported_python = "3.14"
 | |
| 
 | |
| [tool.pytest.ini_options]
 | |
| addopts = "--tb=short --strict-markers -ra"
 | |
| testpaths = [ "tests" ]
 | |
| filterwarnings = [ "ignore:CoreAPI compatibility is deprecated*:rest_framework.RemovedInDRF318Warning" ]
 | |
| 
 | |
| [tool.coverage.run]
 | |
| # NOTE: source is ignored with pytest-cov (but uses the same).
 | |
| source = [ "." ]
 | |
| include = [ "rest_framework/*", "tests/*" ]
 | |
| branch = true
 | |
| 
 | |
| [tool.coverage.report]
 | |
| include = [ "rest_framework/*", "tests/*" ]
 | |
| exclude_lines = [
 | |
|   "pragma: no cover",
 | |
|   "raise NotImplementedError",
 | |
| ]
 |