This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
70 lines (67 loc) · 1.72 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
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="ert-storage",
description="Storage service for ERT",
long_description=long_description,
long_description_content_type="text/markdown",
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.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",
"pytest",
"pytest-asyncio",
"mypy==0.981",
"types-requests",
],
"postgres": [
"psycopg2",
],
"azure": [
"aiohttp",
"azure-storage-blob",
],
},
install_requires=[
"alembic",
"fastapi < 0.100.0",
"httpx",
"numpy",
"pandas",
"pyarrow",
"pydantic < 2",
"python-multipart",
"requests",
"sqlalchemy>=1.4",
"uvicorn >= 0.17.0",
],
)