-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
61 lines (56 loc) · 1.89 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
60
61
# -*- coding: utf-8 -*-
"""
This module contains the tool of birdhousebuilder.recipe.nginx
"""
from setuptools import find_packages
from setuptools import setup
name = 'birdhousebuilder.recipe.nginx'
version = '0.4.2'
description = 'A Buildout recipe to install and configure Nginx with conda.'
long_description = open('README.rst').read()
# long_description = (
# open('README.rst').read() + '\n' +
# open('AUTHORS.rst').read() + '\n' +
# open('CHANGES.rst').read()
# )
entry_points = '''
[zc.buildout]
default = %(name)s:Recipe
[zc.buildout.uninstall]
default = %(name)s:uninstall
''' % globals()
reqs = ['setuptools',
'zc.buildout',
# -*- Extra requirements: -*-
'mako',
'pyopenssl',
'zc.recipe.deployment',
'birdhousebuilder.recipe.conda',
'birdhousebuilder.recipe.supervisor',
],
tests_reqs = ['zope.testing', 'zc.buildout']
setup(name=name,
version=version,
description=description,
long_description=long_description,
long_description_content_type="text/x-rst",
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Framework :: Buildout',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
],
keywords='buildout recipe birdhouse nginx conda',
author='Birdhouse',
url='https://github.com/bird-house/birdhousebuilder.recipe.nginx',
license='Apache License 2',
install_requires=reqs,
extras_require=dict(tests=tests_reqs),
entry_points=entry_points,
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['birdhousebuilder', 'birdhousebuilder.recipe'],
include_package_data=True,
zip_safe=False,
)