forked from cool-RR/marley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.57 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
# Copyright 2020 Ram Rachum and collaborators.
# This program is distributed under the MIT license.
import setuptools
import re
def read_file(filename):
with open(filename) as file:
return file.read()
version = re.search("__version__ = '([0-9.]*)'",
read_file('grid_royale/__init__.py')).group(1)
setuptools.setup(
name='grid_royale',
version=version,
author='Ram Rachum',
author_email='[email protected]',
description='GridRoyale - A life simulation for exploring social dynamics',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/cool-RR/grid_royale',
packages=setuptools.find_packages(exclude=['tests*']),
install_requires=read_file('requirements.txt'),
include_package_data=True, # For including the frontend files
python_requires='>=3.8',
extras_require={
'tests': {
'pytest',
},
},
entry_points={
'console_scripts': [
'grid_royale = grid_royale:grid_royale'
],
},
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Artificial Life',
],
)