-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (36 loc) · 1.18 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
import setuptools
def get_description():
with open('README.md', 'r') as file:
return file.read()
def main():
setuptools.setup(
name = 'pacai',
version = '1.1.0',
url = 'https://github.com/linqs/pacman',
keywords = [
'AI',
'Artificial Intelligence',
'Education',
'Teaching',
],
author = 'linqs',
author_email = '[email protected]',
description = 'A modified version of the Pacman educational project from the Berkley AI Lab.',
long_description = get_description(),
long_description_content_type = 'text/markdown',
packages = setuptools.find_packages(),
install_requires = [
'imageio==2.5.0',
],
python_requires = '>=3.5',
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)
if (__name__ == '__main__'):
main()