-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
34 lines (31 loc) · 1.08 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plexiglass"
version = "0.0.1" # Replace with the actual version
description = "A Python Machine Learning Security Toolbox for Adversarial Attacks."
readme = "README.md"
authors = [{ name = "Chi Nok Enoch Kan", email = "[email protected]" }] # Replace with actual email
license = { file = "LICENSE" } # If you have a LICENSE file
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
# Add other relevant classifiers
]
keywords = ["adversarial", "DNN", "LLM"] # Add more relevant keywords
dependencies = [
"torch >= 1.7.0",
"litellm", # Specify version if needed
"detoxify", # Specify version if needed
"transformers",
"accelerate",
"typer",
"inquirerpy"
]
requires-python = ">=3.6" # Specify your minimum Python version
[project.urls]
Homepage = "https://github.com/kortex-labs/plexiglass"
Issues = "https://github.com/kortex-labs/plexiglass/issues"
[project.scripts]
plx = "plexiglass.cli:app"