forked from peakwinter/python-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·22 lines (20 loc) · 757 Bytes
/
setup.py
File metadata and controls
executable file
·22 lines (20 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup
setup(
name='python-nginx',
version='1.5.3',
description='Create and modify nginx serverblock configs in Python',
author='Jacob Cook',
author_email='jacob@peakwinter.net',
url='https://github.com/peakwinter/python-nginx',
py_modules=['nginx'],
keywords=['nginx', 'web servers', 'serverblock', 'server block'],
download_url='https://github.com/peakwinter/python-nginx/archive/1.5.3.zip',
license='GPLv3',
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Unix",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
)