-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 672 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
setup(name='concorde',
version='0.14.0',
description='ACME client library, cli tool, and automation tool',
url='https://github.com/frutiger/concorde',
author='Masud Rahman',
license='MIT',
packages=[
'concorde',
'concorde.acme',
'concorde.cli',
'concorde.crypto',
'concorde.shaman',
],
install_requires=[
'cryptography',
'requests',
],
entry_points={
'console_scripts': [
'concorde=concorde.cli.__main__:main',
'shaman=concorde.shaman.__main__:main',
],
})