-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (31 loc) · 928 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
33
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='InterestingnessXRL',
version='1.0',
description='A python library for eXplainable Reinforcement Learning (XRL) based on the concept of interestingness elements.',
author='Pedro Sequeira',
author_email='[email protected]',
url='https://github.com/pedrodbs/InterestingnessXRL',
packages=find_packages(),
scripts=[
],
install_requires=[
'numpy',
'pygame',
'ple @ git+https://github.com/ntasfi/PyGame-Learning-Environment',
'gym',
'pillow',
'jsonpickle',
'pandas',
'matplotlib',
'scipy',
'pyfpgrowth',
"palettable"
],
extras_require={
'frogger': [
'frogger @ git+https://github.com/pedrodbs/frogger',
],
},
zip_safe=True
)