-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 732 Bytes
/
setup.py
File metadata and controls
35 lines (33 loc) · 732 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
27
28
29
30
31
32
33
34
35
from setuptools import setup
setup(
name='pyminisim',
version='0.1.0',
packages=[
'pyminisim',
'pyminisim.core',
'pyminisim.pedestrians',
'pyminisim.pedestrians.assets',
'pyminisim.robot',
'pyminisim.sensors',
'pyminisim.util',
'pyminisim.visual',
'pyminisim.visual.assets',
'pyminisim.visual.util',
'pyminisim.world_map'
],
install_requires=[
'pygame',
'numpy',
'pillow',
'numba',
'scipy',
'Cython'
# 'git+https://github.com/sybrenstuvel/Python-RVO2.git'
],
extras_require={
'test': [
'pylint',
'pytest',
],
},
)