-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 811 Bytes
/
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
import setuptools
with open("README.md") as file_handler:
long_description = file_handler.read()
with open("legendastv/requirements.txt") as file_handler:
required = file_handler.read().splitlines()
setuptools.setup(
name="legendastv",
version="0.1.8",
description="Library to automate downloads from Legendas TV website",
long_description=long_description,
long_description_content_type="text/markdown",
author="Vinicius Gubiani Ferreira",
author_email="[email protected]",
url="https://github.com/vinigfer/legendastv",
packages=setuptools.find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
install_requires=required,
setup_requires=["wheel"],
)