-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 998 Bytes
/
setup.py
File metadata and controls
37 lines (36 loc) · 998 Bytes
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
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.2.3",
"seaborn==0.13.2",
"ruamel.yaml==0.18.6",
"scipy==1.15.2",
"pydantic==2.10.3",
"python-dotenv==1.0.1",
"rich==13.9.4",
"zstandard==0.23.0",
"pydantic-settings==2.8.1",
"ray[serve]==2.44.0",
"torch==2.6.0",
"torchvision==0.21.0",
"torchaudio==2.6.0",
"transformers==4.50.0",
"streamlit==1.40.1",
],
extras_require={
"dev": [
"mypy==1.15.0",
"pre-commit==4.2.0",
"types-protobuf==5.29.1.20250315",
"types-requests==2.32.0.20250306",
"tqdm-stubs==0.2.1",
"ipython==9.0.2",
"ruff==0.11.2",
"pandas-stubs==2.2.3.250308",
],
},
)