-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
48 lines (43 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
48
import setuptools
from setuptools import find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Read the version from the version file
version = {}
with open("tabmemcheck/version.py") as fp:
exec(fp.read(), version)
setuptools.setup(
name="tabmemcheck",
version=version["__version__"],
author="Sebastian Bordt, Harsha Nori, Rich Caruana",
author_email="[email protected]",
description="Testing Language Models for Memorization of Tabular Data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/interpretml/LLM-Tabular-Memorization-Checker",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "."},
packages=find_packages(),
package_data={
"": ["*.yaml", "*.csv"],
},
include_package_data=True,
python_requires=">=3.9",
install_requires=[
"numpy",
"matplotlib",
"scikit-learn",
"xgboost",
"scipy",
"pandas>=2.1.0",
"tiktoken",
"openai>=1.3.3",
"tenacity",
"jellyfish",
"pyyaml",
],
)