-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.11 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Ready to go FastAPI project template 🍪
"""
from setuptools import setup
__version__ = "0.1.0"
with open("README.md") as readme_file:
long_description = readme_file.read()
setup(
name="cookiecutter-fastapi-docker",
version=__version__,
description="Ready to go FastAPI project template 🍪",
long_description=long_description,
author="Vital Kudzelka",
author_email="vital.kudzelka@gmail.com",
url="https://github.com/vitalk/cookiecutter-fastapi-docker",
download_url="",
packages=[],
include_package_data=True,
license="MIT",
classifiers=[
"Framework :: FastAPI",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
],
keywords=(
"""
cookiecutter, Python, project templates, fastapi, skeleton,
scaffolding, docker, sqlalchemy, alembic
"""
),
)