You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
#!/usr/bin/env python2
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name = 'mitogen',
|
|
version = '0.0.1',
|
|
description = 'Library for writing distributed self-replicating programs.',
|
|
author = 'David Wilson',
|
|
license = 'OpenLDAP BSD',
|
|
url = 'https://github.com/dw/mitogen/',
|
|
packages = ['mitogen'],
|
|
zip_safe = False,
|
|
classifiers = [
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Console',
|
|
'Intended Audience :: System Administrators',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Operating System :: POSIX',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.4',
|
|
'Programming Language :: Python :: 2.5',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 2 :: Only',
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
'Topic :: System :: Distributed Computing',
|
|
'Topic :: System :: Systems Administration',
|
|
],
|
|
)
|