-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 900 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 900 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
from setuptools import setup, find_packages
dependencies = ["numpy"]
url = "https://github.com/GabrielSCabrera/Termighty"
with open("README.md", "r") as fs:
long_description = fs.read()
setup(
name="Termighty",
packages=find_packages(where="source"),
package_dir={"": "source"},
include_package_data=True,
package_data={"": ["data/*.json", "config.ini"]},
version="3.0.4",
description="Cross-Platform Terminal Coloring, Formatting, and Management Utilities.",
long_description=long_description,
author="Gabriel S. Cabrera",
author_email="gabriel.sigurd.cabrera@gmail.com",
url=url,
download_url=url + "archive/v3.0.4.tar.gz",
keywords=["terminal", "xterm", "gui", "windows", "linux"],
install_requires=dependencies,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
],
)