-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 771 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 771 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
from setuptools import setup
setup(name='gaedevhelper',
version='0.1.0.dev',
description='A lovely command-line helper for developing GAE applications',
url='https://github.com/devjoe/gae-dev-helper',
author='devjoe',
author_email='excusemejoe@gmail.com',
license='MIT',
packages=['gaedevhelper'],
install_requires=[
'Click',
'Pygments',
'subprocess32',
'daemonize',
],
tests_require=[
'pytest',
'pytest-mock'
],
entry_points='''
[console_scripts]
gaedh=gaedevhelper.gae:gae
''',
keywords=['GAE', 'Google App Engine', 'dev_appserver', 'pygments', 'remote_api', 'gae_dev_helper'],
zip_safe=False)