forked from lcosmin/buildout.recipe.uwsgi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1017 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 1017 Bytes
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
setup(
name="buildout.recipe.uwsgi",
version="0.0.18",
description="Buildout recipe downloading, compiling and configuring uWSGI.",
long_description = open("README.rst", "r").read(),
author="Cosmin Luță",
author_email="q4break@gmail.com",
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"]}
)