-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
73 lines (66 loc) · 1.99 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
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=61.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.package-data]
rest_framework_tus = ["*.html", "*.png", " *.gif", "*.js", "*.css", "*.jpg", "*.jpeg", "*.svg", "*.py"]
[tool.isort]
known_first_party = ["drf-tus"]
known_django = ["django"]
known_djangorestframework = ["rest_framework"]
sections = ["FUTURE", "STDLIB", "DJANGO", "DJANGORESTFRAMEWORK", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
profile = "black"
multi_line_output = 3
line_length = 120
skip_gitignore = true
[tool.black]
line_length = 120
target-version = ['py311']
include = '\.pyi?$'
[project]
name = "drf-tus"
dynamic = ["version"]
description = "A Tus (tus.io) library for Django Rest Framework"
readme = "README.rst"
authors = [
{ name = "Dirk Moors", email = "[email protected]" },
]
dependencies = [
"python-dateutil>=2.8.2",
"Django>=3.2,<6.0",
"djangorestframework>=3.14.0",
"jsonfield>=2.0.0",
"django-fsm==2.8.1",
"six>=1.11.0",
]
license = { text = "MIT" }
keywords = [
"drf-tus",
"tus",
"django",
"rest",
"framework",
"django-rest-framework",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"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 :: Libraries :: Python Modules",
]
[project.urls]
homepage = "https://github.com/dirkmoors/drf-tus"
changelog = "https://github.com/dirkmoors/drf-tus/blob/master/HISTORY.rst"