30 lines
897 B
Python
30 lines
897 B
Python
|
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,
|
||
|
)
|