-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (21 loc) · 772 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (21 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
from CoderPad import __version__
setup(
name='CoderPad',
version=__version__,
packages=['CoderPad', 'CoderPad.views', 'CoderPad.coderpad_socket_server'],
url='',
license='',
include_package_data=True, # looks in MANIFEST.in
entry_points = {
'console_scripts': [
'serve-coderpad=CoderPad.serve_coderpad:main',
'setup-coderpad=CoderPad.configure:DoSetupCoderpadSite',
'configure-coderpad=CoderPad.configure:DoSetupCoderpadSite'
],
},
install_requires=['flask','Flask-SQLAlchemy','Flask-Socketio','Flask-Login'],
author='Joran Beasley',
author_email='joranbeasley@gmail.com',
description='Interactive Shared Coding Environment For Interviews'
)