-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
44 lines (41 loc) · 1.16 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
41
42
43
44
from setuptools import find_packages, setup
# fake to satisfy mypy
__version__ = "0.0.0"
exec(open("mdagent/version.py").read())
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="md-agent",
version=__version__,
description="Collection of MD tools for use with language models",
author="Andrew White",
author_email="andrew.white@rochester.edu",
url="https://github.com/ur-whitelab/md-agent",
license="MIT",
packages=find_packages(),
install_requires=[
"langchain==0.2.12",
"langchain-community",
"langchain-openai==0.1.19",
"matplotlib",
"nbformat",
"openai",
"paper-qa==5.0.6",
"pandas",
"pydantic>=2.6",
"python-dotenv",
"rdkit",
"requests",
"seaborn",
"scikit-learn",
"scipy==1.14.0",
],
test_suite="tests",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)