-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
23 lines (21 loc) · 853 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
# -*- coding: utf-8 -*-
# @Author: prabhakar
# @Date: 2016-06-25 20:13:13
# @Last Modified by: Prabhakar Gupta
# @Last Modified time: 2016-12-25 20:53:28
from setuptools import setup, find_packages
setup(
name='github_email',
packages=find_packages(),
version='0.0.5',
description='Get email ID of any GitHub user',
long_description='Get a list of email IDs of any valid GitHub user from one function call even if there are no public email for that user',
author='Prabhakar Gupta',
author_email='[email protected]',
url='https://github.com/prabhakar267/github_email',
download_url='https://github.com/prabhakar267/github_email/tarball/0.0.5',
keywords=['github', 'email', 'user', 'public', 'commit', 'get'],
license='MIT',
include_package_data = True,
install_requires=['requests'],
)