-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.74 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
#!/usr/bin/env python3
from setuptools import setup
from setuptools import find_packages
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Terminals",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
]
setup(
name="rangeen",
version="0.0.2",
maintainer="Shanu Khera",
maintainer_email="[email protected]",
author="Shanu Khera",
author_email="[email protected]",
url="https://github.com/khera-shanu/rangeen",
license="MIT",
platforms=["any"],
packages=find_packages("src"),
package_dir={"": "src"},
description="An unicode and ascii colour, emotes, art and loader library for terminals.",
classifiers=classifiers,
long_description="""A python package to help developers create terminal tools in python
using multi-color text and unicode emotes.Rangeen also provides ASCII and Unicode art for cool
branding of command line tools. Except all this rangeen also provides ASCII loaders"""
)