Skip to content

Commit c626aba

Browse files
authored
Merge pull request #42 from devilbox/release-1.0.1
Release 1.0.1
2 parents bc9090f + 732b955 commit c626aba

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ pip install vhost-gen
2424
```
2525

2626
#### From git
27+
**Note:** When using the Makefile, ensure that `pyyaml` is installed (`pip install pyyaml`).
2728
```bash
2829
git clone https://github.com/devilbox/vhost-gen
2930
cd vhost-gen
@@ -234,7 +235,7 @@ Usage: vhost-gen -p|r <str> -n <str> [-l <str> -m <str> -c <str> -t <str> -o <st
234235
235236
vhost-gen will dynamically generate vhost configuration files
236237
for Nginx, Apache 2.2 or Apache 2.4 depending on what you have set
237-
in /etc/vhot-gen/conf.yml
238+
in /etc/vhost-gen/conf.yml
238239
239240
Required arguments:
240241
-p|r <str> You need to choose one of the mutually exclusive arguments.

bin/vhost-gen

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Usage: vhost-gen -p|r <str> -n <str> [-l <str> -c <str> -t <str> -o <str> -d -s
8585
8686
vhost-gen will dynamically generate vhost configuration files
8787
for Nginx, Apache 2.2 or Apache 2.4 depending on what you have set
88-
in /etc/vhot-gen/conf.yml
88+
in /etc/vhost-gen/conf.yml
8989
9090
Required arguments:
9191
-p|r <str> You need to choose one of the mutually exclusive arguments.
@@ -135,7 +135,7 @@ Misc arguments:
135135

136136
def print_version():
137137
"""Show program version."""
138-
print("vhost-gen v1.0.0 (2020-01-23)")
138+
print("vhost-gen v1.0.1 (2020-09-29)")
139139
print("cytopia <cytopia@everythingcli.org>")
140140
print("https://github.com/devilbox/vhost-gen")
141141
print("The MIT License (MIT)")

setup.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1+
"""Pip configuration."""
12
from setuptools import setup
23

34
with open("README.md", "r") as fh:
45
long_description = fh.read()
56

67
setup(
78
name="vhost-gen",
8-
version="1.0.0",
9+
version="1.0.1",
910
description="Configurable vHost generator for Apache 2.2, Apache 2.4 and Nginx.",
1011
license="MIT",
1112
long_description=long_description,
@@ -23,18 +24,22 @@
2324
# 4 - Beta
2425
# 5 - Production/Stable
2526
'Development Status :: 5 - Production/Stable',
26-
2727
# Indicate who your project is intended for
2828
'Intended Audience :: Developers',
29+
"Intended Audience :: System Administrators",
30+
# Project topics
2931
'Topic :: Software Development :: Build Tools',
30-
32+
"Topic :: System :: Systems Administration",
33+
"Topic :: Utilities",
3134
# License
3235
"License :: OSI Approved :: MIT License",
33-
3436
# Specify the Python versions you support here. In particular, ensure
3537
# that you indicate whether you support Python 2, Python 3 or both.
3638
"Programming Language :: Python :: 2",
3739
"Programming Language :: Python :: 3",
40+
# How does it run
41+
"Environment :: Console",
42+
# Where does it rnu
3843
"Operating System :: OS Independent",
3944
],
4045
)

0 commit comments

Comments
 (0)