Thanks Alex!
pull/50/head
David Wilson 7 years ago
commit ec7fe7dafa

2
.gitignore vendored

@ -1,2 +1,4 @@
build/
dist/
docs/_build
*.egg-info

@ -1,3 +1,4 @@
#!/usr/bin/env python2
from distutils.core import setup
@ -8,6 +9,22 @@ setup(
author = 'David Wilson',
license = 'OpenLDAP BSD',
url = 'http://github.com/dw/mitogen/',
py_packages = ['Mitogen'],
zip_safe = False
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',
],
)

Loading…
Cancel
Save