-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (36 loc) · 1.13 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
"""Setup for the module."""
# -*- coding: utf-8 -*-
from setuptools import setup # type: ignore
packages = [
"cs_insights_prediction_endpoint",
"cs_insights_prediction_endpoint.enums",
"cs_insights_prediction_endpoint.models",
"cs_insights_prediction_endpoint.routes",
]
package_data = {"": ["*"]}
install_requires = [
"bcrypt>=3.2.0,<4.0.0",
"bson>=0.5.10,<0.6.0",
"fastapi>=0.70.0,<0.71.0",
"pydantic>=1.8.2,<2.0.0",
"uvicorn>=0.15.0,<0.16.0",
]
setup_kwargs = {
"name": "cs-insights-prediction-endpoint",
"version": "0.1.0",
"description": (
"This repository implements the processing of machine-learning methods for"
" cs-insights-backend."
),
"long_description": None,
"author": "Jan Philip Wahle",
"author_email": "wahle@uni-wuppertal.de",
"maintainer": "Jan Philip Wahle",
"maintainer_email": "wahle@uni-wuppertal.de",
"url": "https://github.com/ag-gipp/cs-insights-prediction-endpoint",
"packages": packages,
"package_data": package_data,
"install_requires": install_requires,
"python_requires": ">=3.8,<=3.11",
}
setup(**setup_kwargs)