forked from mezdahun/PygameModelling22
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 913 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 913 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='PyGame Modelling Workshop 2023',
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/scioip34/PygameModelling23',
maintainer='David Mezey @ SCIoI',
packages=find_packages(exclude=['tests']),
package_data={'pygmodw23': ['*.txt']},
python_requires=">=3.7",
install_requires=[
'pygame',
'numpy',
'scipy',
'matplotlib',
'opencv-python',
'h5py'
],
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
)