-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
50 lines (46 loc) · 1.66 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup
import os
version = "2.1.0.dev0"
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
HISTORY = open(os.path.join(here, 'HISTORY.rst')).read()
install_requires = [
'attrs',
'importlib.metadata;python_version<"3.8"',
'lazy',
'paramiko',
'pluggy',
'ruamel.yaml']
setup(
version=version,
description="A tool to manage servers through a central configuration. Plugins allow provisioning, configuration and other management tasks.",
long_description=README + "\n\n" + HISTORY,
name="ploy",
author='Florian Schulze',
author_email='[email protected]',
license="BSD 3-Clause License",
url='http://github.com/ployground/ploy',
classifiers=[
'Environment :: Console',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration'],
include_package_data=True,
zip_safe=False,
packages=['ploy', 'ploy.tests', 'ploy_pytest_plugin'],
install_requires=install_requires,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*',
entry_points="""
[console_scripts]
ploy = ploy:ploy
ploy-ssh = ploy:ploy_ssh
[ploy.plugins]
plain = ploy.plain:plugin
[pytest11]
ploy_pytest_plugin = ploy_pytest_plugin
""")