-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 885 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
from setuptools import setup, find_packages
try:
with open("./README.md", "r", encoding="utf8") as readme_file:
long_description = readme_file.read()
except FileNotFoundError:
long_description = "Descripción del proyecto no encontrada"
setup(
name='Dragon-Ball-API',
version='0.1',
description='Api unoficial de dragon ball inspirado de la fandom de dragon ball',
long_description=long_description,
long_description_content_type='text/markdown',
author='Eduardo Lopez',
author_email='[email protected]',
url='https://github.com/xtream-club/Dragon-Ball-API',
download_url='https://github.com/xtream-club/Dragon-Ball-API/tarball/0.1',
keywords=['Dragon-Ball-Api', 'Dragon Ball', 'Api Dragon Ball'],
classifiers=[],
license='MIT',
packages=find_packages(),
include_package_data=True
)