forked from equinor/ert-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (62 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup
setup(
name="ert-storage",
description="Storage service for ERT",
author="Equinor ASA",
author_email="[email protected]",
url="https://github.com/equinor/ert-storage",
license="GPLv3",
packages=[
"ert_storage",
"ert_storage._alembic",
"ert_storage._alembic.alembic",
"ert_storage._alembic.alembic.versions",
"ert_storage.database_schema",
"ert_storage.endpoints",
"ert_storage.endpoints.compute",
"ert_storage.compute",
"ert_storage.ext",
"ert_storage.graphql",
"ert_storage.json_schema",
"ert_storage.testing",
],
package_data={
"ert_storage._alembic": [
"alembic.ini",
]
},
entry_points={
"console_scripts": ["ert-storage=ert_storage.__main__:main"],
"pytest11": ["ert-storage=ert_storage.testing.pytest11"],
},
extras_require={
"test": [
"black",
"pytest",
"mypy",
],
"postgres": [
"psycopg2",
],
"azure": [
"aiohttp",
"azure-storage-blob",
],
},
install_requires=[
"alembic",
"async-exit-stack; python_version < '3.7'",
"async-generator; python_version < '3.7'",
"fastapi",
"graphene",
"graphene-sqlalchemy>=2.0",
"numpy",
"pandas",
"pydantic",
"python-multipart",
"requests",
"sqlalchemy>=1.4",
"starlette==0.13.6",
"uvicorn",
],
)