forked from microsoft/MarS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 838 Bytes
/
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
from setuptools import setup
setup(
name="market_simulation",
version="0.0.1",
packages=["market_simulation", "mlib"],
description="An awesome package that does something",
install_requires=[
"pandas==2.0.3",
"seaborn==0.13.2",
"protobuf==4.23.1",
"ruamel.yaml==0.17.21",
"fire==0.5.0",
"scipy==1.10.1",
"joblib==1.3.2",
"pydantic==2.6.1",
"python-dotenv==1.0.1",
"rich==13.7.0",
"zstandard==0.20.0",
"pydantic-settings==2.1.0",
],
extras_require={
"dev": [
"mypy==1.8.0",
"black==24.1.1",
"pre-commit==3.5.0",
"types-protobuf==4.24.0.20240129",
"tqdm-stubs==0.2.1",
"ipython==8.12.3",
"ruff==0.3.7",
],
},
)