-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (25 loc) · 966 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·30 lines (25 loc) · 966 Bytes
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
#!/usr/bin/env python3.10 -mpoetry run python
from distutils.core import setup
import os
def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as file:
return file.read()
setup(
name="cli-color-py",
version="0.6.0",
description="Minimalistic way to add colors to your terminal output",
long_description=read_file("README.md"),
long_description_content_type="text/markdown",
author="Jason Verbeek",
author_email="jason@localhost8080.org",
url="https://github.com/jasonverbeek/cli-color-py",
download_url="https://github.com/jasonverbeek/cli-color-py/archive/refs/tags/0.6.0.tar.gz",
packages=["cli_color_py"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)