-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
38 lines (37 loc) · 1.03 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="green_score",
version="0.0.11",
author="Sophie Ostmeier, Jean-Benoit Delbrouck",
license="MIT",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=[
"torch==2.2.2",
"transformers==4.40.0",
"accelerate==0.30.1",
"pillow==10.3.0",
"sentencepiece==0.2.0",
"sentence-transformers==3.0.1",
"datasets==3.2.0",
"torchvision==0.17.2",
"opencv-python==4.10.0.84",
"dill==0.3.8",
"protobuf==5.29.1",
"scipy",
"matplotlib",
"scikit-learn",
"pandas",
"numpy<2",
"pytest",
],
# python_requires='>=3.9,<=3.10.13',
python_requires="==3.12.1",
packages=find_packages(),
zip_safe=False,
)