1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20from distutils.core import setup setup( name='pypki', version='1.0', packages=['core'], url='', license='', author='Dennis Verslegers', author_email='dennis.verslegers@sd-consult.be', description='', install_requires=[ "web.py>=0.37", "cheroot", "configobj", "pyyaml", "pexpect", ], )