2023-08-09 19:36:01 -07:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="colored-output",
|
2023-08-09 19:56:01 -07:00
|
|
|
version="0.0.3",
|
2023-08-09 19:36:01 -07:00
|
|
|
author="Kyle Yasuda",
|
|
|
|
author_email="suda@sudacode.com",
|
|
|
|
description="Colors",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="",
|
|
|
|
project_urls={
|
|
|
|
"Bug Tracker": "",
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
package_dir={"": "src"},
|
|
|
|
packages=setuptools.find_packages(where="src"),
|
|
|
|
python_requires=">=3.6",
|
|
|
|
install_requires=[""],
|
|
|
|
test_requires=["pytest", "pylint", "pycodestyle", "pydocstyle"],
|
|
|
|
dependency_links=[""],
|
|
|
|
include_package_data=True,
|
|
|
|
)
|