-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
54 lines (52 loc) · 2.36 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
#
# colorconsole
# Copyright (C) 2010-2022 Nilo Menezes
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
from distutils.core import setup
setup(
name="colorconsole",
version="0.8.0",
description="Simple console routines to enable colors and cursor positioning.",
author="Nilo Menezes",
author_email="[email protected]",
url="https://github.com/lskbr/colorconsole",
packages=["colorconsole"],
license="LGPL",
scripts=[],
long_description="""colorconsole uses a common set of console (text mode) primitives, \
available on Windows, Linux and Mac OS X. The API is the same on all operating systems and \
applications should run without modifications on any of them. The Windows API or ANSI scape \
codes are used depending on the platform. This library is licensed under the terms of \
the GNU LGPL.""",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)