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.
mitogen/setup.py

15 lines
444 B
Python

#!/usr/bin/env python2
7 years ago
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/',
packages = ['mitogen'],
7 years ago
zip_safe = False
)