Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pybalt committed Apr 5, 2024
1 parent 1a097a4 commit 4897cae
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,18 @@
long_description = fh.read()

setup(
name='fast-templates',
version='0.2.0',
name="fast-templates",
version="0.2.1",
packages=find_packages(),
package_data={'': ['**/*', '.env', '.gitignore']},
url='https://github.com/pybalt/FastAPI-TemplateWizard',
author='pybalt',
author_email='96897286+pybalt@users.noreply.github.com',
description='A CLI to generate FastAPI templates',
package_data={"": ["**/*", ".env", ".gitignore"]},
url="https://github.com/pybalt/FastAPI-TemplateWizard",
author="pybalt",
author_email="96897286+pybalt@users.noreply.github.com",
description="A CLI to generate FastAPI templates",
long_description=long_description,
install_requires=[
'typer',
'questionary',
'pyyaml'
],
entry_points='''
install_requires=["typer", "questionary", "pyyaml"],
entry_points="""
[console_scripts]
fastcli=fasttemplates.main:app
'''
""",
)

0 comments on commit 4897cae

Please sign in to comment.