-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
25 lines (24 loc) · 1.16 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
from setuptools import setup, find_packages
setup(name='gym_idsgame',
version='1.0.12',
install_requires=['gym', 'pyglet==1.5.15', 'numpy', 'torch', 'matplotlib', 'seaborn', 'tqdm', 'opencv-python',
'imageio', 'jsonpickle', 'tensorboard', 'scikit-learn', 'stable_baselines3', 'torchvision',
'cv', 'PyOpenGL'],
author='Kim Hammar',
author_email='[email protected]',
description='An Abstract Cyber Security Simulation and Markov Game for OpenAI Gym',
license='MIT License',
keywords='Cyber Security, Intrusion Detection, Markov Games, Reinforcement Learning, Q-learning',
url='https://github.com/Limmen/gym-idsgame',
download_url='https://github.com/Limmen/gym-idsgame/archive/1.0.0.tar.gz',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)