-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 896 Bytes
/
setup.py
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
26
27
28
from setuptools import setup
import codecs
with codecs.open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='aio-doh',
url='https://github.com/ZhukovAlexander/aio-doh',
author='Alexander Zhuko',
author_email='[email protected]',
description='Asynchronous DNS-over-HTTPS client for Python',
long_description=readme,
keywords='python dns https asyncio',
use_scm_version=True,
python_requires=">=3.6",
setup_requires=['setuptools_scm'],
install_requires=['aiohttp'],
packages=['doh',],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)