-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (25 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
import pypandoc
setup(
name='zerobounce',
version='0.1.4',
description='ZeroBounce Python API - https://www.zerobounce.net.',
author='Tudor Aursulesei',
author_email='[email protected]',
url='http://github.com/zerobounce/zerobounce-python-api',
long_description = pypandoc.convert("README.md", "rst"),
download_url = 'https://github.com/zerobounce/zerobounce-python-api/archive/0.1.4.tar.gz', # I'll explain this in a second
keywords = ['email', 'validation'], # arbitrary keywords
packages=[
'zerobounce',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)