-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (26 loc) · 1.04 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
"""
Setup for pypi releases of llm_analyst
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read the contents of README.md for the long description
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
# Read the contents of requirements.txt for install_requires
requirements_path = this_directory / "requirements.txt"
install_requires = requirements_path.read_text().splitlines()
packages = find_packages(include=['llm_analyst', 'llm_analyst.*'], exclude=['tests', 'tests.*'])
print("Discovered packages:", packages)
setup(name='research-task',
version='0.1.7',
description='LLM Research tool',
long_description_content_type="text/markdown",
long_description=long_description,
url='https://github.com/DanHUMassMed/llm_analyst.git',
author='Dan Higgins',
author_email='[email protected]',
license='MIT',
packages=packages,
install_requires=install_requires,
include_package_data=True,
zip_safe=False)