-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 888 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
# -*- coding: utf-8 -*-
from distutils.core import setup
try:
with open('README.md', 'r') as f:
readme = f.read()
with open('LICENSE.txt', 'r') as f:
license_ = f.read()
except:
readme = ''
license_ = ''
setup(
name='linkedin-py',
version='1.0.1',
packages=['linkedin_py', 'linkedin_py.authentication', 'linkedin_py.authorization', 'linkedin_py.endpoints'],
url='',
download_url='https://github.com/slawek87/linkedin-py',
license=license_,
author=u'Sławomir Kabik',
author_email='[email protected]',
description='Linkedin-py provides an easy-to-use Python interface for handle Linkedin API requests.',
long_description=readme,
keywords=['Python Linkedin', 'Linkedin API', 'Python Linkedin requests', 'Linkedin Python Lib', 'Python Linkedin endpoints'],
install_requires=['setuptools', 'requests'],
)