initial commit for colored_output
This commit is contained in:
29
colored_output/setup.py
Executable file
29
colored_output/setup.py
Executable file
@@ -0,0 +1,29 @@
|
||||
import setuptools
|
||||
|
||||
with open("README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="colored-output",
|
||||
version="0.0.1",
|
||||
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,
|
||||
)
|
||||
Reference in New Issue
Block a user