You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
770 B
27 lines
770 B
2 years ago
|
import setuptools
|
||
|
|
||
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||
|
long_description = fh.read()
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="knotctl",
|
||
|
version="0.0.1",
|
||
|
packages = setuptools.find_packages(),
|
||
|
author="Micke Nordin",
|
||
|
author_email="hej@mic.ke",
|
||
|
description="A cli for knotapi.",
|
||
|
long_description=long_description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
url="https://code.smolnet.org/micke/knotctl",
|
||
|
project_urls={
|
||
|
"Bug Tracker": "https://code.smolnet.org/micke/knotctl/issues",
|
||
|
},
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: GPL-3.0",
|
||
|
"Operating System :: OS Independent",
|
||
|
],
|
||
|
python_requires=">=3.9",
|
||
|
scripts=["scripts/knotctl"],
|
||
|
)
|