-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (21 loc) · 770 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (21 loc) · 770 Bytes
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
"""
setupTools based setup script for
To install: python setup.py install
"""
import os
from distutils.core import setup
version = '0.1.0'
PACKAGES = ['rpmcli', 'rpmcli.src', 'rpmcli.src.backend']
setup(name = 'rpmcli',
version = version,
description = "RPM Remote Print Manager CLI",
author="Daniel Casper, Brooks Internet Software",
author_email="daniel@brooksnet.com",
url="https://github.com/gddc/rpmcli",
classifiers=["Programming Language :: Python",
"Intended Audience :: Developers",
"Topic :: Office/Business"],
keywords="RPM Remote Print Manager Command Line Interface CLI",
packages=PACKAGES,
install_requires=['json','socket','sys']
)