Update setup.py for PyPI

This commit is contained in:
VirtuBox
2019-09-30 14:11:51 +02:00
parent 905ef0660a
commit 592ab3e437

View File

@@ -4,13 +4,14 @@ import os
from setuptools import find_packages, setup from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
conf = [] conf = []
templates = [] templates = []
long_description = '''WordOps is an essential toolset that eases WordPress description = '''An essential toolset that eases WordPress
site and server administration. It provide the ability site and server administration'''
to install a high performance WordPress stack
with a few keystrokes.'''
for name in glob.glob('config/plugins.d/*.conf'): for name in glob.glob('config/plugins.d/*.conf'):
conf.insert(1, name) conf.insert(1, name)
@@ -26,13 +27,18 @@ if not os.path.exists('/var/lib/wo/tmp/'):
setup(name='wo', setup(name='wo',
version='3.9.9.2', version='3.9.9.2',
description=long_description, description=description,
long_description=long_description, long_description=long_description,
classifiers=[], long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords='', keywords='',
author='WordOps', author='WordOps',
author_email='contact@wordops.io', author_email='thomas@virtubox.net',
url='https://wordops.net', url='https://github.com/WordOps/WordOps',
license='MIT', license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', packages=find_packages(exclude=['ez_setup', 'examples', 'tests',
'templates']), 'templates']),