-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
51 lines (42 loc) · 1.3 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from pkg_resources import Requirement, resource_filename
from greins import __version__
setup(
name = 'greins',
version = __version__,
description = 'Greins is tack for Gunicorn.',
long_description = file(
os.path.join(
os.path.dirname(__file__),
'README.rst'
)
).read(),
author = 'Meebo, Inc. and contributors',
maintainer = 'Randall Leeds',
maintainer_email = '[email protected]',
url = 'http://github.com/meebo/greins',
license = 'MIT License',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe = False,
packages = find_packages(exclude=['test']),
include_package_data = True,
install_requires = ['setuptools', 'gunicorn >= 0.13.0'],
entry_points="""
[console_scripts]
greins=greins.app:run
[gunicorn.loggers]
greins=greins.app:GreinsLogger
"""
)