-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
33 lines (31 loc) · 900 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(
os.path.abspath(
os.path.join(
os.path.dirname(__file__), fname,
)
)
).read()
setup(
name="rrmngmnt",
version="0.1",
author="Lukas Bednar",
author_email="[email protected]",
description="Tool to manage remote systems and services.",
license="GPL2",
keywords="remote resources services",
url="https://github.com/lukas-bednar/python-rrmngmnt",
platforms=['linux'],
packages=['rrmngmnt'],
long_description=read('README.md'),
install_requires=['paramiko', 'netaddr'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License 2 (GPL2)",
"Operating System :: POSIX",
"Programming Language :: Python",
],
)