Skip to content

Commit f67284c

Browse files
authored
Mwm/package (#3)
* packaging
1 parent 4b2d39f commit f67284c

File tree

5 files changed

+46
-0
lines changed

5 files changed

+46
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.DS_Store
2+
13
# Byte-compiled / optimized / DLL files
24
__pycache__/
35
*.py[cod]

AROS/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#© M.W. Mathis Lab | Hossein Mirzaei & M.W. Mathis
2+
# https://github.com/https://github.com/AdaptiveMotorControlLab/AROS
3+
# Licensed under Apache 2.0

setup.cfg

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
[metadata]
2+
name = aros
3+
version = 0.0.1
4+
author = Hossein Mirzaei, Mackenzie Mathis
5+
author_email = [email protected]
6+
description = AROS: Adversarially Robust Out-of-Distribution Detection through Stability
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown
9+
license_files = LICENSE.md
10+
license_file_type = text/markdown
11+
url = https://github.com/AdaptiveMotorControlLab/AROS
12+
project_urls =
13+
Bug Tracker = https://github.com/AdaptiveMotorControlLab/AROS/issues
14+
classifiers =
15+
Development Status :: 4 - Beta
16+
Environment :: GPU :: NVIDIA CUDA
17+
Intended Audience :: Science/Research
18+
Operating System :: OS Independent
19+
Programming Language :: Python :: 3
20+
Topic :: Scientific/Engineering :: Artificial Intelligence
21+
License :: OSI Approved :: Apache Software License
22+
23+
[options]
24+
packages = find:
25+
include_package_data = True
26+
python_requires = >=3.10
27+
install_requires =
28+
geotorch
29+
torchdiffeq
30+
git+https://github.com/RobustBench/robustbench.git
31+
32+
[options.extras_require]
33+
dev =
34+
pylint
35+
toml
36+
yapf
37+
black
38+
pytest
39+
40+
[bdist_wheel]
41+
universal=0

0 commit comments

Comments
 (0)