-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 870 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
from setuptools import setup, find_packages
from codecs import open
from os import path
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="quick_styles",
version="1.0.2",
description="A ridiculously lightweight Python library for effortlessly applying ANSI escape color & style codes to Windows CMD.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/imjamnotjelly/quick_styles",
author="imjamnotjelly",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: Terminals",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent"
],
packages=find_packages(include=['quick_styles']),
)