-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (35 loc) · 1.02 KB
/
setup.py
File metadata and controls
executable file
·39 lines (35 loc) · 1.02 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '0.4.0'
install_requires = [
'psutil>=4.2.0',
]
setup(
name='rainbow-saddle',
version=version,
description=(
'A wrapper around gunicorn to handle graceful restarts correctly'
),
long_description=README + '\n\n' + NEWS,
classifiers=[
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
],
keywords='gunicorn wrapper graceful restart',
author='Luper Rouch',
author_email='luper.rouch@gmail.com',
url='https://github.com/flupke/rainbow-saddle',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points={
'console_scripts':
['rainbow-saddle=rainbowsaddle:main']
}
)