forked from micke/knotctl
parent
f68bfc3768
commit
4d92a08eab
@ -0,0 +1,37 @@
|
||||
[build-system]
|
||||
requires = ["flit_core >=3.2,<4"]
|
||||
build-backend = "flit_core.buildapi"
|
||||
|
||||
[project]
|
||||
name="knotctl"
|
||||
description="A CLI for knotapi."
|
||||
authors = [
|
||||
{name = "Micke Nordin", email = "hej@mic.ke"},
|
||||
]
|
||||
license= { file="LICENSE" }
|
||||
readme= "README.md"
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||
"Operating System :: OS Independent",
|
||||
]
|
||||
requires-python= ">=3.9"
|
||||
version = "0.0.7"
|
||||
|
||||
dependencies = [
|
||||
"argcomplete==2.0.0",
|
||||
"pyyaml==6.0.1",
|
||||
"requests==2.27.1",
|
||||
"simplejson==3.17.6",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Source="https://code.smolnet.org/micke/knotctl"
|
||||
Documentation = "https://code.smolnet.org/micke/knotctl"
|
||||
|
||||
[project.scripts]
|
||||
knotctl="knotctl:main"
|
||||
|
||||
|
||||
[tool.flit.sdist]
|
||||
include = ["LICENSE",]
|
@ -1,4 +1,4 @@
|
||||
argcomplete==2.0.0
|
||||
pyyaml==5.4.1
|
||||
pyyaml==6.0.1
|
||||
requests==2.27.1
|
||||
simplejson==3.17.6
|
||||
|
@ -1,26 +0,0 @@
|
||||
import setuptools
|
||||
|
||||
with open("README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="knotctl",
|
||||
version="0.0.7",
|
||||
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"],
|
||||
)
|
Loading…
Reference in new issue