forked from Azure/counterfit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 943 Bytes
/
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
import setuptools
import os
import sys
if sys.version_info[:2] < (3, 7):
raise RuntimeError("Python version must be >=3.7.")
with open("requirements.txt") as f:
required = f.read().splitlines()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="counterfit",
maintainer="Counterfit Developers",
version="0.1.1",
author="ATML",
description="Counterfit project to simulate attacks on ML systems",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Azure/counterfit",
classifiers=[
"Development Status :: development",
"Intended Audience :: Security/ML/Research",
"Programming Language :: Python :: 3.7+",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
install_requires=required,
python_requires=">=3.7",
)