-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
32 lines (29 loc) · 1019 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
'''
Needed for setuptools...
Created on Jul 12, 2011
@author: tmetsch
'''
from distutils.core import setup
setup(name='pyzone',
version='1.0',
description='Ctypes wrappers to manage Solaris zones in Python.',
license='???',
author='Thijs Metsch',
author_email='[email protected]',
keywords='Solaris, Zones, Containers',
url='http://www.github.org/tmetsch/pyzone',
packages=['pyzone'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Manufacturing',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Operating System :: POSIX :: SunOS/Solaris',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Utilities'
],
)