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.
17 lines
383 B
Python
17 lines
383 B
Python
|
|
from __future__ import absolute_import
|
|
from __future__ import with_statement
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name = 'econtext',
|
|
version = '0.0.0-master',
|
|
description = "Remote Code Execution Contexts",
|
|
author = 'David Wilson',
|
|
license = 'OpenLDAP BSD',
|
|
url = 'http://github.com/dw/econtext/',
|
|
py_packages = ['econtext'],
|
|
zip_safe = False
|
|
)
|