shaping up

This commit is contained in:
2023-04-01 21:09:48 +02:00
parent bc472274f6
commit 9d2a68d698
7 changed files with 112 additions and 21 deletions

28
setup.py Normal file
View File

@@ -0,0 +1,28 @@
import pathlib as pl
from setuptools import setup
setup(
name="ai_getter",
version="0.0.1",
description="A CLI for publishing sites to Netlify and assigning custom domains to them.",
author="Zev Averbach",
author_email="zev@averba.ch",
description_file="README.md",
long_description=pl.Path("README.md").read_text(),
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=["ai_getter"],
include_package_data=True,
install_requires=["requests", "openai", "requests"],
python_requires=">=3.10", # only because we're using | instead of typing.Union; otherwise >= 3.9
url="https://github.com/zevaverbach/ai_getter",
entry_points={"console_scripts": ["aig=ai_getter.main:main"]},
)