-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 941 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(
name="sonne",
version="0.0.1",
description="Sonne is a Python module that provides a lot of possibilities to make your terminal look beautiful.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/sonnelib/sonne",
author="Ekin Aksu",
author_email="[email protected]",
license="Apache License 2.0",
keywords="Terminal, Style, Color, Terminal Styling",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
],
python_requires=">=3.8",
)