forked from by-cx/uWSGI-Manager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·32 lines (28 loc) · 1010 Bytes
/
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
#!/usr/bin/python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "uwsgi-manager-yaml",
version = "0.1.0",
author = "Matt Wright",
author_email = "[email protected]",
description = ("Python tool for controling the uWSGI instances."),
license = "BSD",
keywords = "uwsgi",
url = "https://github.com/mattupstate/uWSGI-Manager",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
long_description="This is python tool for controling the uWSGI instances. It can read your YAML configuration and stop/reload/restart/start/whatever with your uWSGI processes.",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
install_requires=[
],
entry_points="""
[console_scripts]
uwsgi-manager = uwsgi_manager.manager:main
"""
)