forked from shaunsephton/shaunsephton.recipe.uwsgi
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
31 lines (31 loc) · 1.03 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
# coding: utf-8
from setuptools import setup, find_packages
import codecs
setup(
name="buildout.recipe.uwsgi",
version="0.1.2",
description="Buildout recipe for downloading, compiling and configuring uWSGI",
long_description = codecs.open("README.rst", encoding="utf-8").read(),
author="Cosmin Luță",
author_email="[email protected]",
license="BSD",
url="http://github.com/lcosmin/buildout.recipe.uwsgi",
packages=find_packages(),
include_package_data=True,
namespace_packages=["buildout"],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Framework :: Buildout",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
install_requires=[
"zc.recipe.egg",
"setuptools"
],
zip_safe=False,
entry_points={"zc.buildout": ["default = buildout.recipe.uwsgi:UWSGI"]}
)