mitogen/setup.py

14 lines
424 B
Python
Raw Normal View History

2017-09-15 06:24:41 +00:00
from distutils.core import setup
setup(
name = 'mitogen',
version = '0.0.0',
description = 'Library for writing distributed self-replicating programs. THIS PACKAGE IS INCOMPLETE. IT IS BEING UPLOADED BECAUSE PYPI MAINTAINERS BROKE THE REGISTER COMMAND',
author = 'David Wilson',
license = 'OpenLDAP BSD',
url = 'http://github.com/dw/mitogen/',
py_packages = ['Mitogen'],
zip_safe = False
)