forked from stefanfoulis/djangorecipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.13 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
import os
from setuptools import setup, find_packages
version = '0.20-divio_1'
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='djangorecipe',
version=version,
description="Buildout recipe for Django",
long_description='\n\n'.join([readme, changes]),
classifiers=[
'Framework :: Buildout',
'Framework :: Django',
'Topic :: Software Development :: Build Tools',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
],
package_dir={'': 'src'},
packages=find_packages('src'),
keywords='',
author='Jeroen Vloothuis',
author_email='[email protected]',
url='https://launchpad.net/djangorecipe',
license='BSD',
zip_safe=False,
install_requires=[
'zc.buildout',
'zc.recipe.egg',
],
entry_points="""
# -*- Entry points: -*-
[zc.buildout]
default = djangorecipe.recipe:Recipe
""",
)