-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
27 lines (25 loc) · 869 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 os.path import join, dirname
from setuptools import setup, find_packages
setup(
name='pypipedrive',
version='0.1.3',
packages=find_packages(),
requires=['python (>= 2.7)', 'requests'],
install_requires=['requests'],
description='Python wrapper for the Pipedrive API',
long_description=open(join(dirname(__file__), 'README.md')).read(),
author='Andriy Sheerpa',
author_email='asherepa@gmail.com',
url='https://github.com/42cc/pypipedrive',
download_url='https://github.com/42cc/pypipedrive/tarball/master',
license='BSD License',
keywords=['pipedrive', 'api'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
],
)