update setup.py
This commit is contained in:
16
setup.py
16
setup.py
@@ -25,7 +25,7 @@ if not os.path.exists('/var/log/wo/'):
|
|||||||
if not os.path.exists('/var/lib/wo/tmp/'):
|
if not os.path.exists('/var/lib/wo/tmp/'):
|
||||||
os.makedirs('/var/lib/wo/tmp/')
|
os.makedirs('/var/lib/wo/tmp/')
|
||||||
|
|
||||||
setup(name='wo',
|
setup(name='wordops',
|
||||||
version='3.9.9.2',
|
version='3.9.9.2',
|
||||||
description=short_description,
|
description=short_description,
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
@@ -34,10 +34,15 @@ setup(name='wo',
|
|||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
|
"Development Status :: 5 - Production/Stable",
|
||||||
|
"Environment :: Console",
|
||||||
|
"Natural Language :: English",
|
||||||
|
"Topic :: System :: Systems Administration",
|
||||||
|
|
||||||
],
|
],
|
||||||
keywords='',
|
keywords='',
|
||||||
author='WordOps',
|
author='WordOps',
|
||||||
author_email='thomas@virtubox.net',
|
author_email='contact@wordops.io',
|
||||||
url='https://github.com/WordOps/WordOps',
|
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',
|
||||||
@@ -45,12 +50,10 @@ setup(name='wo',
|
|||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
test_suite='nose.collector',
|
test_suite='nose.collector',
|
||||||
|
python_requires='>=3.5',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
# Required to build documentation
|
# Required to build documentation
|
||||||
# "Sphinx >= 1.0",
|
# "Sphinx >= 1.0",
|
||||||
# Required for testing
|
|
||||||
# "nose",
|
|
||||||
# "coverage",
|
|
||||||
# Required to function
|
# Required to function
|
||||||
'cement == 2.8.2',
|
'cement == 2.8.2',
|
||||||
'pystache >= 0.5.4',
|
'pystache >= 0.5.4',
|
||||||
@@ -63,6 +66,9 @@ setup(name='wo',
|
|||||||
'distro >= 1.4.0',
|
'distro >= 1.4.0',
|
||||||
'apt-mirror-updater >= 6.1',
|
'apt-mirror-updater >= 6.1',
|
||||||
],
|
],
|
||||||
|
extras_require={ # Optional
|
||||||
|
'testing': ['nose', 'coverage'],
|
||||||
|
},
|
||||||
data_files=[('/etc/wo', ['config/wo.conf']),
|
data_files=[('/etc/wo', ['config/wo.conf']),
|
||||||
('/etc/wo/plugins.d', conf),
|
('/etc/wo/plugins.d', conf),
|
||||||
('/usr/lib/wo/templates', templates),
|
('/usr/lib/wo/templates', templates),
|
||||||
|
|||||||
Reference in New Issue
Block a user