This commit is contained in:
2023-03-31 16:33:25 +02:00
parent e479f46d56
commit 1d96d7df60
6 changed files with 60 additions and 8 deletions

14
setup.py Normal file
View File

@@ -0,0 +1,14 @@
from setuptools import setup
setup(
name="publify",
version="0.1.0",
description="A CLI for publishing sites to Netlify and assigning custom domains to them.",
author="Zev Averbach",
author_email="zev@averba.ch",
license="MIT",
packages=["publify"],
install_requires=["python-dotenv", "requests"],
url="https://github.com/zevaverbach/publify",
entry_points={"console_scripts": ["pub = publify.publify:main"]},
)