-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 905 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
import setuptools
import ansiplus
def getReadme():
with open("README.md", 'r') as f:
return f.read()
setuptools.setup(
name="ansiplus",
author=ansiplus.__author__,
maintainer=ansiplus.__author__,
version=ansiplus.__version__,
description=ansiplus.__description__,
url="https://github.com/xyzpw/ansiplus/",
python_required=">= 3.10",
long_description=getReadme(),
long_description_content_type="text/markdown",
classifiers=[
"Operating System :: POSIX :: Linux",
"Topic :: Utilities",
"Topic :: Terminals",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords=["ansi", "cursor", "style", "color"],
license=ansiplus.__license__,
)