forked from cache-rules/email_hunter_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.13 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
import os
from setuptools import setup, find_packages
short_description = 'Client for Email Hunter REST API'
long_description = short_description
if os.path.exists('README.txt'):
long_description = open('README.txt').read()
setup(
name='email_hunter_python',
version='1.1.0',
description=short_description,
long_description=long_description,
license='MIT',
keywords='email hunter client rest api cli',
author='Alan Vezina',
author_email='[email protected]',
url='https://github.com/tipsqueal/email-hunter-python',
packages=find_packages(),
install_requires=['requests'],
entry_points='''
[console_scripts]
email_hunter=email_hunter.cli:main
''',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities'
]
)