-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 892 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
from setuptools import setup, find_packages
kw = dict(
name = 'edo_client',
version = '0.0.1',
description = 'Everydo OAuth 2 API Python SDK',
long_description = "Everydo OAuth 2 API Python SDK",
author = 'Chen Weihong',
author_email = '[email protected]',
url = 'https://github.com/everydo/python-sdk',
download_url = 'https://github.com/everydo/python-sdk',
packages = find_packages(),
install_requires = ['py-oauth2>=0.0.5'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
])
setup(**kw)