-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.14 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.14 KB
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="pts",
version="0.0.1",
description="Pivotal Token Search - Find and leverage pivotal tokens in LLM generations",
author="codelion",
author_email="codelion@okyasoft.com",
url="https://github.com/codelion/pts",
packages=find_packages(),
install_requires=[
"torch>=1.13.0",
"transformers>=4.30.0",
"datasets>=2.12.0",
"scikit-learn>=1.0.0",
"numpy>=1.20.0",
"tqdm>=4.65.0",
"huggingface_hub>=0.16.0",
"accelerate",
"sentence-transformers>=2.2.0",
],
entry_points={
"console_scripts": [
"pts=pts.cli:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.8",
)