forked from pythonecuador/lira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.17 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
39
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="lira",
version="0.0.1rc1",
author="Python Ecuador",
author_email="[email protected]",
description="Tutorial interactivo de Python en tu terminal",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={"lira": ["*.rst"]},
install_requires=[
"docutils==0.16",
"PyYAML==5.3.1",
"prompt-toolkit==3.0.7",
],
entry_points={
"console_scripts": [
"lira=lira.__main__:main",
],
},
extras_require={"docs": ["sphinx==3.2.1"], "es": []},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
project_urls={
"Homepage": "https://github.com/pythonecuador/pylearn/",
"Source Code": "https://github.com/pythonecuador/pylearn/",
"Issue Tracker": "https://github.com/pythonecuador/pylearn/issues",
},
)