generated from DevCraftClub/template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 660 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name="turbobit_api",
version="1.0.0",
description="Unofficial python api wrapper from https://turbobit.net/",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
keywords="api turbobit file video hosting unlimited",
url="https://github.com/DevCraftClub/TurboBitApi",
author="Maxim Harder",
author_email="dev@devcraft.club",
packages=["turbobit"],
install_requires=[
"requests",
"python-dotenv",
"python-fsutil"
],
classifiers=[
"Programming Language :: Python :: 3",
],
zip_safe=False,
)