-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 715 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 715 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='hacktrick_ai',
version='1.1.0',
description='Cooperative multi-agent environment for Dell Hacktrick Hackathon',
packages=find_packages('src'),
keywords=['AI', 'Reinforcement Learning'],
package_dir={"": "src"},
package_data={
'hacktrick_ai_py' : [
'data/layouts/*.layout', 'data/planners/*.py', 'data/human_data/*.pickle',
'data/graphics/*.png', 'data/graphics/*.json', 'data/fonts/*.ttf',
],
},
install_requires=[
'numpy',
'scipy',
'tqdm',
'gym',
'ipython',
'pygame',
'ipywidgets'
]
)