-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (61 loc) · 1.82 KB
/
setup.py
File metadata and controls
62 lines (61 loc) · 1.82 KB
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
# causalign/setup.py
from setuptools import find_packages, setup
setup(
name="causalign",
version="0.1.0",
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=[
# Core ML/Data Science
"torch>=2.0.0",
"numpy>=1.21.3",
"pandas>=1.3.0",
"scipy>=1.7.0",
"scikit-learn>=1.0.0",
"networkx>=2.6.3",
"statsmodels>=0.13.0",
# Plotting
"matplotlib>=3.4.3",
"seaborn>=0.11.2",
"tueplots>=0.0.4",
# LLM APIs
"openai>=1.0.0",
"google-generativeai>=0.3.0",
"anthropic>=0.7.0",
"python-dotenv>=0.19.0",
# Development/Testing
"pytest>=6.2.5",
"jupyter>=1.0.0",
],
extras_require={
"dev": [
"black>=22.0.0",
"isort>=5.10.0",
"pylint>=2.15.0",
"pytest-cov>=3.0.0",
],
"docs": [
"sphinx>=4.0.0",
"sphinx-rtd-theme>=1.0.0",
],
},
python_requires=">=3.8,<3.14",
author="HMD",
author_email="hmd8142@nyu.edu",
description="Comparing Causal Reasoning in LLMs and Humans",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/hmd101/causalign",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)