-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (46 loc) · 2.05 KB
/
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
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
"""A setuptools based setup module."""
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="protectai", # Required
version="1.0.3", # Required
description="Simulation of protecting AI model from poisoning attack", # Optional
long_description=long_description, # Optional
long_description_content_type="text/markdown", # Optional (see note above)
project_urls={
"Source" : "https://github.com/dahmansphi/protectai",
"Project" : "https://dahmansphi.com/protectai"
},
author="Dr. Deniz Dahman's", # Optional
author_email="[email protected]", # Optional
License = "GPL-3.0",
Requires = "None",
# Classifiers help users find your project by categorizing it.
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
# Pick your license as you wish
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
keywords="Cybersecurity, Machine Learning, Artificial Intelligence, Poisoning attack", # Optional
package_dir={"": "src"}, # Optional
packages=find_packages(where="src"), # Required
python_requires=">=3.9",
# This field lists other packages that your project depends on to run.
# Any package you put here will be installed by pip when your project is
# installed, so they must be valid existing projects.
#
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/discussions/install-requires-vs-requirements/
# install_requires=["peppercorn"], # Optional
)