-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.1 KB
/
setup.py
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
from setuptools import setup, find_packages
import codecs
import os
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
VERSION = '0.1.6'
DESCRIPTION = 'Generate CRUD routers for you schema in a simple way'
# Setting up
setup(
name="fastapi-simple-crud",
version=VERSION,
author="danangjoyoo (Agus Danangjoyo)",
author_email="<agus.danangjoyo.blog@gmail.com>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=["uvicorn","fastapi","sqlalchemy","pydantic"],
keywords=['fastapi', 'crud', 'restful', 'routing', "router", 'generator','aiosqlite'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Typing :: Typed"
]
)