-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
36 lines (32 loc) · 919 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
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
__version__ = "0.2.1"
with open("README.md", "r", encoding="utf-8") as fp:
long_description = fp.read()
setup(
name="text2art",
version=__version__,
description="Generating controlled terminal art fonts",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
include_package_data=True,
author="hangfengYang",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
url="https://github.com/yhangf/text2art",
packages=["text2art"],
install_requires=[
"fire",
"colorama",
"pyfiglet"
],
entry_points={
"console_scripts": [
"text2art = text2art.main:main",
],
}
)