forked from thanatos/aioacme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 690 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 690 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='aioacme',
version='0.0.1',
description='Asynchronous ACME client library',
python_requires='>=3.6',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Security',
'Topic :: Security :: Cryptography',
],
packages=['aioacme'],
install_requires=[
'aiohttp>=3.5.4,<4',
'attrs>=19.1.0,<20',
'iso8601>=0.1.12,<0.2',
'josepy>=1.1.0,<2',
'yarl>=1.3.0,<2',
],
)