-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
54 lines (50 loc) · 1.3 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
# setup.cfg
[metadata]
name = fastapi-tusd
version= attr: fastapi_tusd.__version__
author = Frank
author_email = [email protected]
description= FastAPI extention implementing the tus server
long_description = file: README.md, License
long_description_content_type = text/markdown
keywords = fastapi-tusd
url = https://github.com/liviaerxin/fastapi-tusd
license = MIT license
classifiers =
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Libraries
Topic :: Software Development
Framework :: FastAPI
Framework :: Pydantic
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Internet :: WWW/HTTP :: HTTP Servers
Topic :: Internet :: WWW/HTTP
[options]
include_package_data = True
packages = find_namespace:
python_requires = >=3.7
package_dir =
=src
zip_safe = False
install_requires =
fastapi>=0.100.0
filelock
[options.packages.find]
where = src
exclude = tests*
[options.package_data]
* = *.txt, *.rst
hello = *.msg
[options.extras_require]
test =
pytest>=3
pytest-cov
format =
black
dev =
uvicorn