forked from ekm507/araste
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 686 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 686 Bytes
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
from araste import __version__
with open("README_EN.md") as readme:
long_description = readme.read()
setuptools.setup(
name="araste",
version=__version__,
description="Convert persian text to ascii art",
long_description=long_description,
long_description_content_type="text/markdown",
author="Erfan Kheirollahi",
author_email="ekm507@gmail.com",
keywords="figlet",
url="https://github.com/ekm507/araste",
install_requires=["requests"],
classifiers=[],
packages=["araste"],
package_dir={"araste": "araste"},
include_package_data=True,
scripts=[
"bin/araste",
"bin/araste-get",
],
)