forked from eimenhmdt/autoresearcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 963 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, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="autoresearcher",
version="0.0.6",
author="Eimen Hamedat",
author_email="[email protected]",
description="Automating scientic workflows with AI",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/eimenhmdt/autoresearcher",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
python_requires=">=3.8",
include_package_data=True,
install_requires=[
"openai==0.27.0",
"python-dotenv==1.0.0",
"requests==2.26.0",
"termcolor==1.1.0",
"jellyfish==0.11.2",
"tiktoken==0.3.3",
"setuptools>=42",
"wheel"
],
)