-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (37 loc) · 1.08 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
from distutils.core import setup
from setuptools import find_packages
from version import __version__
with open("version.py") as f:
exec(f.read())
setup(
name="wm-data-pipeline",
version=__version__,
description="World modellers data ingest pipeline",
packages=find_packages(),
keywords=["world modellers"],
license="Apache-2.0",
install_requires=[
"prefect==1.4.1",
"dask==2023.9.2", # Make sure this version is same as the dask base image version in src/infra/docker/Dockerfile
"dask[dataframe]==2023.9.2",
"dask[distributed]==2023.9.2",
"pandas==2.1.1",
"fastparquet==2023.8.0",
"bokeh==3.2.2",
"boto3==1.29.0",
"protobuf==4.25.0",
],
extras_require={
"dev": [
"python-dotenv==1.0.0",
"black==23.9.1",
"mypy==1.7.1",
"pytest==7.4.2",
"pytest-cov==4.1.0",
"pytest-watch==4.2.0",
"pytest-testmon==2.1.0",
"moto[s3]==4.2.8",
"elasticsearch==7.17.7",
]
},
)