Update setup.py
This commit is contained in:
25
setup.py
25
setup.py
@@ -10,8 +10,8 @@ with open("README.md", "r") as fh:
|
|||||||
conf = []
|
conf = []
|
||||||
templates = []
|
templates = []
|
||||||
|
|
||||||
description = '''An essential toolset that eases WordPress
|
short_description = """An essential toolset that eases WordPress
|
||||||
site and server administration'''
|
site and server administration"""
|
||||||
|
|
||||||
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)
|
||||||
@@ -27,7 +27,7 @@ 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=description,
|
description=short_description,
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
@@ -53,16 +53,15 @@ setup(name='wo',
|
|||||||
# "coverage",
|
# "coverage",
|
||||||
# Required to function
|
# Required to function
|
||||||
'cement == 2.8.2',
|
'cement == 2.8.2',
|
||||||
'pystache',
|
'pystache >= 0.5.4',
|
||||||
'python-apt',
|
'pynginxconfig >= 0.3.4',
|
||||||
'pynginxconfig',
|
'PyMySQL >= 0.9.3',
|
||||||
'PyMySQL',
|
'psutil >= 5.6.3',
|
||||||
'psutil',
|
'sh >= 1.12.14',
|
||||||
'sh',
|
'SQLAlchemy >= 1.3.8',
|
||||||
'SQLAlchemy',
|
'requests >= 2.22.0',
|
||||||
'requests',
|
'distro >= 1.4.0',
|
||||||
'distro',
|
'apt-mirror-updater >= 6.1',
|
||||||
'apt-mirror-updater',
|
|
||||||
],
|
],
|
||||||
data_files=[('/etc/wo', ['config/wo.conf']),
|
data_files=[('/etc/wo', ['config/wo.conf']),
|
||||||
('/etc/wo/plugins.d', conf),
|
('/etc/wo/plugins.d', conf),
|
||||||
|
|||||||
Reference in New Issue
Block a user