delete setup.py
This commit is contained in:
parent
b798858d94
commit
5c7875d7cf
2 changed files with 0 additions and 32 deletions
|
@ -1,4 +0,0 @@
|
||||||
from main import main
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main()
|
|
28
setup.py
28
setup.py
|
@ -1,28 +0,0 @@
|
||||||
import setuptools
|
|
||||||
|
|
||||||
with open("readme.md", "r") as fh:
|
|
||||||
long_description = fh.read()
|
|
||||||
|
|
||||||
setuptools.setup(
|
|
||||||
name="jekyll-to-hugo",
|
|
||||||
version="0.0.1",
|
|
||||||
author="Denis Nutiu",
|
|
||||||
author_email="nuculabs@outlook.com",
|
|
||||||
description="Python library for converting jekyll md files to Hugo.",
|
|
||||||
long_description=long_description,
|
|
||||||
long_description_content_type="text/markdown",
|
|
||||||
url="nuculabs.dev",
|
|
||||||
packages=setuptools.find_packages(),
|
|
||||||
classifiers=[
|
|
||||||
"Programming Language :: Python :: 3",
|
|
||||||
"Operating System :: OS Independent",
|
|
||||||
],
|
|
||||||
scripts=["jekyll-to-hugo"],
|
|
||||||
install_requires=[
|
|
||||||
"beautifulsoup4==4.12.2",
|
|
||||||
"PyYAML==6.0",
|
|
||||||
"soupsieve==2.4.1",
|
|
||||||
"pydantic==1.10.8",
|
|
||||||
],
|
|
||||||
python_requires=">=3.10",
|
|
||||||
)
|
|
Loading…
Reference in a new issue