|
| 1 | +"""Pip configuration.""" |
1 | 2 | from setuptools import setup |
2 | 3 |
|
3 | 4 | with open("README.md", "r") as fh: |
4 | 5 | long_description = fh.read() |
5 | 6 |
|
6 | 7 | setup( |
7 | 8 | name="vhost-gen", |
8 | | - version="1.0.0", |
| 9 | + version="1.0.1", |
9 | 10 | description="Configurable vHost generator for Apache 2.2, Apache 2.4 and Nginx.", |
10 | 11 | license="MIT", |
11 | 12 | long_description=long_description, |
|
23 | 24 | # 4 - Beta |
24 | 25 | # 5 - Production/Stable |
25 | 26 | 'Development Status :: 5 - Production/Stable', |
26 | | - |
27 | 27 | # Indicate who your project is intended for |
28 | 28 | 'Intended Audience :: Developers', |
| 29 | + "Intended Audience :: System Administrators", |
| 30 | + # Project topics |
29 | 31 | 'Topic :: Software Development :: Build Tools', |
30 | | - |
| 32 | + "Topic :: System :: Systems Administration", |
| 33 | + "Topic :: Utilities", |
31 | 34 | # License |
32 | 35 | "License :: OSI Approved :: MIT License", |
33 | | - |
34 | 36 | # Specify the Python versions you support here. In particular, ensure |
35 | 37 | # that you indicate whether you support Python 2, Python 3 or both. |
36 | 38 | "Programming Language :: Python :: 2", |
37 | 39 | "Programming Language :: Python :: 3", |
| 40 | + # How does it run |
| 41 | + "Environment :: Console", |
| 42 | + # Where does it rnu |
38 | 43 | "Operating System :: OS Independent", |
39 | 44 | ], |
40 | 45 | ) |
0 commit comments