cutekit/setup.py

27 lines
631 B
Python
Raw Normal View History

2022-06-26 06:31:43 +00:00
from setuptools import setup
2023-02-22 19:45:03 +00:00
from osdk.const import VERSION
2022-06-26 06:31:43 +00:00
setup(
name="osdk",
2023-02-22 19:45:03 +00:00
version=VERSION,
2022-07-06 21:11:10 +00:00
python_requires='>=3.10',
2022-06-26 06:31:43 +00:00
description="Operating System Development Kit",
2023-02-22 19:45:03 +00:00
author="Cute Engineering",
author_email="contact@cute.engineering",
url="https://cute.engineering/",
2022-06-26 06:31:43 +00:00
packages=["osdk"],
install_requires=[
"requests",
2023-02-06 11:36:23 +00:00
"graphviz"
2022-06-26 06:31:43 +00:00
],
entry_points={
"console_scripts": [
"osdk = osdk:main",
],
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
)