cutekit/setup.py

24 lines
507 B
Python
Raw Normal View History

2022-06-26 06:31:43 +00:00
from setuptools import setup
2022-07-26 20:15:37 +00:00
from osdk import __version__
2022-06-26 06:31:43 +00:00
setup(
name="osdk",
2022-07-26 20:15:37 +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",
author="The DEVSE Community",
author_email="contact@devse.wiki",
url="https://devse.wiki/",
packages=["osdk"],
install_requires=[
"requests",
],
entry_points={
"console_scripts": [
"osdk = osdk:main",
],
2022-06-26 07:02:15 +00:00
},
license="MIT",
platforms="any",
2022-06-26 06:31:43 +00:00
)