1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-24 19:22:07 +03:00
Files
certbot/setup.py
James Kasten d3708e1e79 Remove trustify/attic related code from setup.py
Conflicts:
	.gitignore
	setup.py
2014-11-18 18:39:39 -08:00

30 lines
616 B
Python
Executable File

#!/usr/bin/env python
from setuptools import setup
setup(
name="trustify",
version="0.1",
description="Trustify",
author="Trustify project",
license="",
url="https://letsencrypt.org",
packages=[
'letsencrypt',
'letsencrypt.client',
],
install_requires=[
#'dialog',
'requests',
'jose',
'jsonschema',
'M2Crypto',
'pycrypto',
#'python-augeas',
'python2-pythondialog',
],
entry_points={
'console_scripts': [
'trustify = trustify.client.client:authenticate'
]
},
)