This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·59 lines (50 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', '')
install_requirements = [
'setuptools >= 8.0',
'zc.buildout >= 2.3.1',
'zc.recipe.egg >= 2.0.1',
]
test_requirements = [
]
setup(
author='Michael Lenaghan',
author_email='metamul -@- gmail.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Framework :: Buildout',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
description='Buildout recipes for App Engine.',
entry_points = {
'zc.buildout': [
'lib = mul.recipe.appengine.lib:Recipe',
'sdk = mul.recipe.appengine.sdk:Recipe'
]
},
include_package_data=True,
install_requires=install_requirements,
keywords='app appengine buildout engine gae mul recipe zc.buildout',
license='BSD',
long_description=readme + '\n' + history,
name='mul.recipe.appengine',
namespace_packages=['mul', 'mul.recipe'],
packages=['mul', 'mul.recipe', 'mul.recipe.appengine'],
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/michaellenaghan/mul.recipe.appengine',
version='0.4.0',
zip_safe=False,
)