-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (36 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
import setuptools
import os
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), "README.md"), "r") as fh:
long_description = fh.read()
setuptools.setup(
name="benchita",
version="0.0.1",
author="Federico A. Galatolo",
author_email="[email protected]",
description="",
url="",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
entry_points = {
"console_scripts": [
"benchita=benchita.main:main",
],
},
install_requires=[
"transformers>=4.39.3",
"datasets>=2.18.0",
"jinja2>=3.0.2",
"pandas>=2.2.1",
"scikit-learn>=1.4.2",
"termcolor>=2.4.0",
"pydantic>=2.7.0",
"evaluate>=0.4.1"
],
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
],
)