-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (46 loc) · 1.12 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
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import find_packages, setup
setup(
name="MODAK",
version="1.1.0",
packages=find_packages(),
include_package_data=True,
install_requires=[
"pydantic[email]",
"Jinja2",
"fastapi",
"uvicorn",
"sqlalchemy[asyncio,aiosqlite]",
"rich",
"requests",
"archspec",
"typing_extensions",
"httpx",
"aiocache",
"python-jose[cryptography]",
"loguru",
],
extras_require={
"testing": [
"pytest",
"pytest-cov",
"sqlalchemy[mypy]",
"pytest-console-scripts",
],
"docs": [
"sphinx",
"autodoc_pydantic",
"sphinx-rtd-theme",
"myst_parser",
"autoapi",
],
},
entry_points={
"console_scripts": [
"modak = MODAK.cli:modak",
"modak-validate-json = MODAK.cli:validate_json",
"modak-schema = MODAK.cli:schema",
"modak-import-script = MODAK.cli:import_script",
"modak-dbshell = MODAK.cli:dbshell",
],
},
)