-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
38 lines (35 loc) · 1.06 KB
/
setup.py
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
"""
FastAPI Tus implementation
-------------
Implements the tus.io server-side file-upload protocol
visit https://tus.io for more information
"""
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="tuspyserver",
version="2.1.0",
description="TUS py protocol implementation in FastAPI",
long_description=long_description,
long_description_content_type="text/markdown",
author="Edi Hasaj",
license="MIT",
author_email="edihasaj@gmail.com",
url="https://github.com/edihasaj/tuspy-fast-api",
packages=find_packages(),
platforms="any",
include_package_data=True,
install_requires=[
"fastapi>=0.110.0",
"pydantic>=2.6.2",
],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)