-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (36 loc) · 1.05 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
import os
from setuptools import setup, find_packages
version = '0.2.5'
def read_file(name):
return open(os.path.join(os.path.dirname(__file__),
name)).read()
readme = read_file('README.txt')
# changes = read_file('CHANGES.txt')
setup(name='gaebuild',
version=version,
description="Buildout recipe for Google app engine",
long_description=readme,
classifiers=[
'Framework :: Buildout',
'Topic :: Software Development :: Build Tools',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
],
package_dir={'': 'src'},
packages=find_packages('src'),
keywords='',
author='Luis C. Cruz',
author_email='[email protected]',
url='https://github.com/carlitux/gaebuild',
license='BSD',
zip_safe=False,
install_requires=[
'zc.buildout',
'zc.recipe.egg',
],
entry_points="""
# -*- Entry points: -*-
[zc.buildout]
default = gaebuild:GAEBuild
""",
)