-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
80 lines (78 loc) · 2.5 KB
/
setup.py
File metadata and controls
80 lines (78 loc) · 2.5 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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(encoding='utf-8')
setup(
name='labmateai',
version='2.0.5',
author='Terry Noblin', # Replace with your actual name
author_email='tnoblin@health.ucsd.edu', # Replace with your actual email
description='An AI-powered recommendation system for laboratory tools and software.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/RLTree/LabMateAI',
packages=find_packages(),
include_package_data=True,
install_requires=[
'networkx==2.8.8',
'numpy>=1.23.5',
'prompt_toolkit>=3.0.0',
'pandas>=1.5.3',
'scikit-learn>=1.1.3',
'matplotlib>=3.6.2',
'flask>=2.2.2',
'requests>=2.28.1',
'scipy>=1.9.3',
'jinja2>=3.1.2',
'gunicorn>=20.1.0',
'psycopg2-binary>=2.9.0', # psycopg2-binary for easier installation
'python-dotenv>=0.19.1',
'sqlalchemy>=1.4.31',
'alembic>=1.7.4',
],
entry_points={
'console_scripts': [
'labmateai=labmateai.cli:main',
],
},
classifiers=[
'Programming Language :: Python :: 3.12',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
],
license='MIT',
python_requires='>=3.12',
keywords=[
'AI',
'Recommendation System',
'Laboratory Tools',
'Scientific Software',
'Bioinformatics',
],
project_urls={
'Bug Reports': 'https://github.com/RLTree/LabMateAI/issues',
'Source': 'https://github.com/RLTree/LabMateAI',
},
extras_require={
'dev': [
'pytest>=7.4.0',
'pytest-cov>=4.0.0',
'pytest-xdist>=2.4.0', # For parallel test execution
'pytest-asyncio>=0.20.3', # If asynchronous tests are included
'pytest-mock>=3.11.1',
'unittest-xml-reporting>=3.0.4',
'flake8>=6.1.0',
'mock>=4.0.3',
],
'docs': [
'sphinx>=4.0.0',
'furo>=2021.8.14',
],
},
setup_requires=[
'setuptools>=70.0.0', # Pinning setuptools to avoid psycopg2 issues
],
)