-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.19 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
from setuptools import setup, find_packages
setup(
name="jespipe",
version="0.0.1",
description="Build and use manipulation, machine learning, attack, and plotting plguins with the Jespipe system",
url="https://github.com/NucciTheBoss/jespipe",
author="Jason C. Nucciarone",
author_email="[email protected]",
license="GNU General Public License version 3",
packages=find_packages(),
install_requires=[
"joblib",
"tqdm",
"matplotlib",
"tensorflow",
"Keras",
"numpy",
"pandas",
"xgboost",
"dataclasses",
"scikit_learn"
],
keywords=['machine-learning', 'adversarial-machine-learning', 'automation', 'plugin'],
classifiers=[
'Development Status :: 1 - Experimental',
'Intended Audience :: Scientific/Research',
'License :: OSI Approved :: GNU GPLv3 License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.9.5',
'Programming Language :: Python :: 3.9.6'
],
)