-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
23 lines (22 loc) · 956 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
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='unix',
version='1.0',
author='François Ménabé',
author_email='[email protected]',
download_url="https://github.com/fmenabe/python-unix",
packages=['unix', 'unix.linux', 'unix.linux.gnu'],
license="MIT Licence",
description='Manage Unix-like systems.',
long_description=open('README.rst').read(),
install_requires=['paramiko'],
classifiers=['License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Operating System :: Unix',
'Topic :: System :: Systems Administration'])