Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.DS_Store

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
3 changes: 3 additions & 0 deletions AROS/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#© M.W. Mathis Lab | Hossein Mirzaei & M.W. Mathis
# https://github.com/https://github.com/AdaptiveMotorControlLab/AROS
# Licensed under Apache 2.0
File renamed without changes.
File renamed without changes.
41 changes: 41 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[metadata]
name = aros
version = 0.0.1
author = Hossein Mirzaei, Mackenzie Mathis
author_email = mackenzie@post.harvard.edu
description = AROS: Adversarially Robust Out-of-Distribution Detection through Stability
long_description = file: README.md
long_description_content_type = text/markdown
license_files = LICENSE.md
license_file_type = text/markdown
url = https://github.com/AdaptiveMotorControlLab/AROS
project_urls =
Bug Tracker = https://github.com/AdaptiveMotorControlLab/AROS/issues
classifiers =
Development Status :: 4 - Beta
Environment :: GPU :: NVIDIA CUDA
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Artificial Intelligence
License :: OSI Approved :: Apache Software License

[options]
packages = find:
include_package_data = True
python_requires = >=3.10
install_requires =
geotorch
torchdiffeq
git+https://github.com/RobustBench/robustbench.git

[options.extras_require]
dev =
pylint
toml
yapf
black
pytest

[bdist_wheel]
universal=0