mirror of
https://github.com/InternLM/InternBootcamp.git
synced 2026-04-19 12:58:04 +00:00
35 lines
No EOL
786 B
Python
Executable file
35 lines
No EOL
786 B
Python
Executable file
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="internbootcamp",
|
|
version="0.1.0",
|
|
url="https://github.com/InternLM/InternBootcamp/tree/main",
|
|
packages=setuptools.find_packages(include=['internbootcamp',]),
|
|
install_requires=[
|
|
"distance",
|
|
"matplotlib",
|
|
"datasets",
|
|
"jsonlines",
|
|
"fire",
|
|
"Faker",
|
|
"python-sat",
|
|
"sympy",
|
|
"openai",
|
|
"openpyxl",
|
|
"transformers",
|
|
"langdetect",
|
|
"pympler",
|
|
"shortuuid",
|
|
"rdkit==2024.3.2"
|
|
],
|
|
|
|
package_data={
|
|
|
|
},
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
) |