-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
57 lines (55 loc) · 1.76 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from distutils.core import setup
from setuptools import find_packages
setup(
name='P34 ABM',
description='Agent based model framework to simulate collectively foraging agents relying on their private and social'
'visual cues. Written in pygame and python 3.7+',
version='1.2.0',
url='https://github.com/scioip34/ABM',
maintainer='David Mezey and Dominik Deffner @ SCIoI',
packages=find_packages(exclude=['tests']),
package_data={'p34abm': ['*.txt']},
python_requires=">=3.7",
install_requires=[
'pygame',
'pygame-widgets',
'numpy',
'scipy',
'matplotlib',
'python-dotenv',
'pandas',
'influxdb<5.3.0',
'opencv-python',
'xvfbwrapper',
'zarr',
'fastcluster'
],
extras_require={
'test': [
'bandit',
'flake8',
'pytest',
'pytest-cov'
]
},
entry_points={
'console_scripts': [
'abm-start=abm.app:start',
'abm-start-coopsig=abm.app_collective_signaling:start',
'abm-start-visflock=abm.app_visual_flocking:start',
'headless-abm-start=abm.app:start_headless',
'playground-start=abm.app:start_playground',
'playground-start-coopsig=abm.app_collective_signaling:start_playground',
'playground-start-visflock=abm.app_visual_flocking:start_playground'
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Operating System :: Other OS',
'Programming Language :: Python :: 3.8'
],
test_suite='tests',
zip_safe=False
)