-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 708 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='karelpy',
version='0.1',
description='Popular educational coding robot',
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
'Topic :: Education :: Computer Aided Instruction (CAI)'
],
keywords='karel robot education',
url='http://github.com/haksoat/karelpy',
author='Habeeb Shopeju',
author_email='shopejuh@gmail.com',
license='MIT',
packages=['karelpy'],
install_requires=[
'pygame',
],
include_package_data=True,
zip_safe=False)