Spaces:
Runtime error
Runtime error
Commit
·
82fc756
1
Parent(s):
46bcae1
Update
Browse files- opentools/setup.py +20 -0
opentools/setup.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
+
|
| 3 |
+
setup(
|
| 4 |
+
name='opentools',
|
| 5 |
+
version='0.1.0',
|
| 6 |
+
# description='A flexible and versatile toolbox agent framework for complex tasks in both general and scientific scenarios.',
|
| 7 |
+
# long_description=open('README.md').read(),
|
| 8 |
+
# long_description_content_type='text/markdown',
|
| 9 |
+
# author='Pan Lu, Bowen Chen, Sheng Liu',
|
| 10 |
+
# author_email='lupantech@gmail.com',
|
| 11 |
+
# url='', # You can add a GitHub or project URL here
|
| 12 |
+
packages=find_packages(),
|
| 13 |
+
# install_requires=open('requirements.txt').read().splitlines(),
|
| 14 |
+
# classifiers=[
|
| 15 |
+
# 'Programming Language :: Python :: 3',
|
| 16 |
+
# 'License :: OSI Approved :: MIT License',
|
| 17 |
+
# 'Operating System :: OS Independent',
|
| 18 |
+
# ],
|
| 19 |
+
# python_requires='>=3.10',
|
| 20 |
+
)
|