cutekit/setup.py

29 lines
732 B
Python
Raw Normal View History

2022-06-26 06:31:43 +00:00
from setuptools import setup
from cutekit.const import VERSION_STR, DESCRIPTION
2022-06-26 06:31:43 +00:00
setup(
name="cutekit",
version=VERSION_STR,
2022-07-06 21:11:10 +00:00
python_requires='>=3.10',
description=DESCRIPTION,
2023-02-22 19:45:03 +00:00
author="Cute Engineering",
author_email="contact@cute.engineering",
url="https://cute.engineering/",
packages=["cutekit"],
2022-06-26 06:31:43 +00:00
install_requires=[
"requests",
2023-02-06 11:36:23 +00:00
"graphviz"
2022-06-26 06:31:43 +00:00
],
entry_points={
"console_scripts": [
"ck = cutekit:main",
"cutekit = cutekit:main",
"cute-engineering-cutekit = cutekit:main",
2022-06-26 06:31:43 +00:00
],
2022-06-26 07:02:15 +00:00
},
license="MIT",
platforms="any",
2023-02-22 19:45:03 +00:00
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
2022-06-26 06:31:43 +00:00
)