mitogen/setup.py

14 lines
305 B
Python
Raw Normal View History

2014-01-10 21:37:04 +00:00
from distutils.core import setup
setup(
name = 'econtext',
2016-08-12 18:49:54 +00:00
version = '0.0.0-master',
2014-01-10 21:37:04 +00:00
description = "Remote Code Execution Contexts",
author = 'David Wilson',
license = 'OpenLDAP BSD',
url = 'http://github.com/dw/econtext/',
2016-08-09 13:40:24 +00:00
py_packages = ['econtext'],
2014-01-10 21:37:04 +00:00
zip_safe = False
)