-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (43 loc) · 1.29 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
#!/usr/bin/env python3
"""Tooler: Create friendly devops tools in minutes
Tooler is a python3 library to create user friendly devops scripts in minutes.
"""
from os import path
from setuptools import (setup, find_packages)
base = path.abspath(path.dirname(__file__))
with open(path.join(base, 'README.md')) as f:
readme = f.read()
with open(path.join(base, 'tooler', 'version.py')) as version:
exec(version.read())
setup(
name='tooler',
version=__version__,
author=__author__,
author_email=__author_email__,
url=__url__,
license='MIT',
description=__doc__.split('\n')[0],
long_description=readme,
platforms='Any',
install_requires=[],
extras_require={},
packages=find_packages(),
entry_points={
'console_scripts': [
'tooler-ssh = tooler.main:ssh',
]
},
scripts=[],
test_suite='tests',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking'
]
)