-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.toml
More file actions
66 lines (58 loc) · 2.09 KB
/
Copy pathproject.toml
File metadata and controls
66 lines (58 loc) · 2.09 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "acis-framework"
version = "1.0.0"
description = "Adversarial Construction Intelligence Security (ACIS) Framework — AI-specific cybersecurity for the built environment"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Ayush Kumar Singh", email = "ab49ayush@gmail.com" },
{ name = "Ankit Yadav" },
{ name = "Siddhant Srivastava" },
{ name = "Devesh Ojha" },
]
keywords = ["adversarial-machine-learning","cybersecurity","construction","BIM","federated-learning","AI-security"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.24",
"scikit-learn>=1.3",
"click>=8.1",
"scipy>=1.10",
]
[project.optional-dependencies]
torch = ["torch>=2.0"]
dashboard = ["streamlit>=1.32", "plotly>=5.18", "pandas>=2.0"]
dev = ["pytest>=7.4", "pytest-cov>=4.1", "flake8>=6.1", "mypy>=1.6", "black>=23.0"]
all = ["torch>=2.0", "streamlit>=1.32", "plotly>=5.18", "pandas>=2.0"]
[project.scripts]
acis = "acis.cli.main:main"
[project.urls]
Homepage = "https://github.com/Ayush-2703/acis-framework"
Documentation = "https://ayush-2703.github.io/acis-framework"
Paper = "https://github.com/Ayush-2703/acis-framework/paper/ACIS.pdf"
"Bug Tracker" = "https://github.com/Ayush-2703/acis-framework/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["acis*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
filterwarnings = ["ignore::DeprecationWarning","ignore::ImportWarning"]
[tool.black]
line-length = 95
target-version = ["py39","py310","py311"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true