File size: 783 Bytes
82fc756
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

setup(
    name='opentools',
    version='0.1.0',
    # description='A flexible and versatile toolbox agent framework for complex tasks in both general and scientific scenarios.',
    # long_description=open('README.md').read(),
    # long_description_content_type='text/markdown',
    # author='Pan Lu, Bowen Chen, Sheng Liu',
    # author_email='[email protected]',
    # url='',  # You can add a GitHub or project URL here
    packages=find_packages(),
    # install_requires=open('requirements.txt').read().splitlines(),
    # classifiers=[
    #     'Programming Language :: Python :: 3',
    #     'License :: OSI Approved :: MIT License',
    #     'Operating System :: OS Independent',
    # ],
    # python_requires='>=3.10',
)