-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
44 lines (37 loc) · 1.11 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python3
from distutils.core import setup
from setuptools import find_packages
import os
import sys
def get_long_description():
path = os.path.join(os.path.dirname(__file__), 'README.md')
with open(path) as f:
return f.read()
requirements = [
'aiodns>=1.1.1,<=2.0',
'idna>=2.9,<3'
]
setup(
name='pydnsbl',
version='1.1.6',
description='Async dnsbl lists checker based on asyncio/aiodns.',
long_description=get_long_description(),
long_description_content_type='text/markdown',
url='https://github.com/dmippolitov/pydnsbl/',
author=u'Dmitry ippolitov',
author_email='ippolitov87@gmail.com',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requirements,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities',
],
)