-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (28 loc) · 913 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='PyGame Modelling Workshop 2022',
description='Workshop material for hands-on demonstration of using pygame in modelling collective behavior using agent-based models.',
version='1.0.0',
url='https://github.com/mezdahun/PygameModelling22',
maintainer='David Mezey @ SCIoI',
packages=find_packages(exclude=['tests']),
package_data={'pygmodw22': ['*.txt']},
python_requires=">=3.7",
install_requires=[
'pygame',
'numpy',
'scipy',
'matplotlib',
'opencv-python',
'zarr'
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Operating System :: Other OS',
'Programming Language :: Python :: 3.7'
],
zip_safe=False
)