-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (28 loc) · 998 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
29
30
31
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open('README.md', 'r') as fp:
README = fp.read()
setup(
name='zerobounce',
version='0.1.4',
description='ZeroBounce Python API - https://www.zerobounce.net.',
author='dev',
author_email='support@zerobounce.net',
url='http://github.com/zerobounce/zerobounce-python-api',
long_description=README,
long_description_content_type="text/markdown",
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=find_packages(),
install_requires=[
'requests==2.20.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)