Skip to content

Commit

Permalink
Add requirememts.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
phamquiluan committed Aug 10, 2024
1 parent b4daa9e commit fc457d5
Show file tree
Hide file tree
Showing 2 changed files with 174 additions and 2 deletions.
172 changes: 172 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
aiobotocore==2.5.0
aiohttp==3.8.4
aiohttp-retry==2.8.3
aioitertools==0.11.0
aiosignal==1.3.1
amqp==5.1.1
antlr4-python3-runtime==4.9.3
appdirs==1.4.4
asttokens==2.2.1
async-timeout==4.0.2
asyncssh==2.13.1
atpublic==3.1.1
attrs==23.1.0
backcall==0.2.0
billiard==3.6.4.0
boto3==1.26.76
botocore==1.29.76
cairocffi==1.5.1
CairoSVG==2.7.0
causal-learn==0.1.3.3
causality==0.0.10
celery==5.2.7
certifi==2023.5.7
cffi==1.15.1
cfgv==3.3.1
charset-normalizer==3.1.0
click==8.1.3
click-didyoumean==0.3.0
click-plugins==1.1.1
click-repl==0.2.0
colorama==0.4.6
comm==0.1.3
configobj==5.0.8
contourpy==1.0.7
cryptography==40.0.2
cssselect2==0.7.0
cycler==0.11.0
debugpy==1.6.7
decorator==5.1.1
defusedxml==0.7.1
dictdiffer==0.9.0
diskcache==5.6.1
distlib==0.3.6
distro==1.8.0
dpath==2.1.5
dulwich==0.21.5
dvc==2.57.3
dvc-data==0.51.0
dvc-http==2.30.2
dvc-objects==0.22.0
dvc-render==0.5.3
dvc-s3==2.22.0
dvc-studio-client==0.9.2
dvc-task==0.2.1
et-xmlfile==1.1.0
exceptiongroup==1.1.1
executing==1.2.0
filelock==3.12.0
flatten-dict==0.4.2
flufl.lock==7.1.1
fonttools==4.39.4
frozenlist==1.3.3
fsspec==2023.5.0
funcy==2.0
gitdb==4.0.10
GitPython==3.1.31
grandalf==0.8
graphviz==0.20.1
hydra-core==1.3.2
identify==2.5.24
idna==3.4
igraph==0.10.4
iniconfig==2.0.0
ipykernel==6.23.1
ipython==8.13.2
iterative-telemetry==0.0.8
jedi==0.18.2
jmespath==1.0.1
joblib==1.2.0
jupyter_client==8.2.0
jupyter_core==5.3.0
kiwisolver==1.4.4
kombu==5.2.4
lazy_loader==0.2
littleutils==0.2.2
llvmlite==0.39.1
markdown-it-py==2.2.0
mdurl==0.1.2
multidict==6.0.4
nanotime==0.5.2
nest-asyncio==1.5.6
networkx==2.5
nodeenv==1.8.0
numba==0.56.4
numpy==1.23.5
omegaconf==2.3.0
openpyxl==3.1.2
orjson==3.8.12
outdated==0.2.2
packaging==23.1
pandas==2.0.1
pandas-flavor==0.5.0
parso==0.8.3
pathspec==0.11.1
patsy==0.5.3
pexpect==4.8.0
pickleshare==0.7.5
Pillow==9.5.0
pingouin==0.5.3
platformdirs==3.5.1
pluggy==1.0.0
pre-commit==3.3.2
prompt-toolkit==3.0.38
psutil==5.9.5
ptyprocess==0.7.0
pure-eval==0.2.2
pyagrum==1.8.0
pycparser==2.21
pydot==1.4.2
pydotplus==2.0.2
pygit2==1.12.1
Pygments==2.15.1
pygtrie==2.5.0
pyparsing==3.0.9
pytest==7.3.1
python-dateutil==2.8.2
python-igraph==0.10.4
pytz==2023.3
PyYAML==6.0
pyzmq==25.0.2
requests==2.30.0
rich==13.3.5
ruamel.yaml==0.17.26
ruamel.yaml.clib==0.2.7
s3fs==2023.5.0
s3transfer==0.6.1
scikit-learn==1.2.2
scikit-network==0.31.0
scipy==1.10.1
scmrepo==1.0.3
seaborn==0.12.2
shortuuid==1.0.11
shtab==1.6.1
six==1.16.0
smmap==5.0.0
sqltrie==0.3.1
stack-data==0.6.2
statsmodels==0.14.0
tabulate==0.9.0
texttable==1.6.7
threadpoolctl==3.1.0
tigramite==4.2.2.1
tinycss2==1.2.1
tk==0.1.0
tomli==2.0.1
tomlkit==0.11.8
torch==1.12.1
tornado==6.3.2
tqdm==4.65.0
traitlets==5.9.0
typing_extensions==4.5.0
tzdata==2023.3
urllib3==1.26.15
vine==5.0.0
virtualenv==20.23.0
voluptuous==0.13.1
wcwidth==0.2.6
webencodings==0.5.1
wrapt==1.15.0
xarray==2023.5.0
yarl==1.9.2
zc.lockfile==3.0.post1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from setuptools import setup

# parse requirements.txt to requirement list
with open("requirements.lock") as f:
with open("requirements.txt") as f:
requirements = f.read().splitlines()

with open("requirements_rcd.lock") as f:
rcd_requirements = f.read().splitlines()

setup(
name="RCAEval",
version="0.0.1",
version="0.0.3",
packages=["RCAEval"],
include_package_data=True,
install_requires=[],
Expand Down

0 comments on commit fc457d5

Please sign in to comment.