forked from podio/podio-py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 755 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
from setuptools import setup, find_packages
'''The setup and build script for the pypodio library.'''
__author__ = 'trezorg@gmail.com'
__version__ = '0.1.2'
setup(
name = "pypodio2",
version = __version__,
author='Igor Nemilentsev',
author_email='trezorg@gmail.com',
description='A Python wrapper around the Podio API',
license='MIT',
url='https://github.com/trezorg/podio-py.git',
keywords='podio',
packages= find_packages(),
install_requires = ['httplib2'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications',
'Topic :: Internet',
],
)