-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (35 loc) · 859 Bytes
/
setup.py
File metadata and controls
executable file
·38 lines (35 loc) · 859 Bytes
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
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",
"scipy",
"scikit-learn==1.7.0",
"pandas==2.3.0"
],
package_data={
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)