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.
14 lines
424 B
Python
14 lines
424 B
Python
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/',
|
||
|
py_packages = ['Mitogen'],
|
||
|
zip_safe = False
|
||
|
)
|