-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
32 lines (30 loc) · 1015 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name = "ascii_py",
version = "2.0",
description = "Make ascii art",
# This is because shutil.get_terminal_size() was added in 3.3
python_requires=">=3.5",
author = "ProfOak",
author_email = "[email protected]",
url = "https://www.github.com/ProfOak/Ascii_py/",
license = "MIT",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Editors",
"Programming Language :: Python :: 3",
],
keywords = "ascii art image fun memes",
install_requires = [
"colorama==0.4.4",
"Pillow==8.0.1",
],
packages = find_packages(exclude=["Media"]),
scripts=["bin/ascii_py"],
)