-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 870 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 870 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
31
32
33
from distutils.core import setup
VERSION = '0.0.42'
CLASSIFIERS = [
'Programming Language :: Python',
'Intended Audience :: Education',
'Topic :: Education :: Computer Aided Instruction (CAI)',
'Development Status :: 2 - Pre-Alpha',
]
install_requires = [
'Pillow',
]
setup(
name="codesters",
description="Offline replication of the graphics on codesters.com",
version=VERSION,
author="Codesters",
author_email="thomas@codesters.com",
url="https://github.com/codestersnyc/codesters-graphics",
packages=['codesters'],
include_package_data = True,
package_data = {
'codesters': ['sprites/*.gif',
'examples/*.py']
},
install_requires=install_requires,
entry_points={
'console_scripts':['codesters = codesters.execute:runner']
},
classifiers=CLASSIFIERS,
)