forked from equinor/ert-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (69 loc) · 1.83 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
65
66
67
68
69
70
71
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.client",
"ert_storage.compute",
"ert_storage.ext",
"ert_storage.graphql",
"ert_storage.json_schema",
"ert_storage.testing",
],
package_dir={
"": "src",
},
package_data={
"ert_storage": ["py.typed"],
"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==21.12b0",
"pytest",
"pytest-asyncio",
"mypy",
"types-requests",
],
"postgres": [
"psycopg2",
],
"azure": [
"aiohttp",
"azure-storage-blob",
],
},
install_requires=[
"alembic",
"async-exit-stack; python_version < '3.7'",
"async-generator; python_version < '3.7'",
"fastapi==0.70.1",
"graphene<3.0.0",
"graphene-sqlalchemy>=2.0",
"httpx",
"numpy",
"pandas",
"pyarrow",
"pydantic",
"python-multipart",
"requests",
"sqlalchemy>=1.4",
"uvicorn < 0.17.0; python_version <= '3.6'",
"uvicorn >= 0.17.0; python_version > '3.6'",
],
)