-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 899 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
setup(
name='RtmAPI',
author='Michael Gruenewald',
author_email='[email protected]',
description='API package for rememberthemilk.com',
long_description=open('README').read(),
license='License :: OSI Approved :: MIT License',
url='https://bitbucket.org/michaelgruenewald/rtmapi',
version='0.7.0',
packages=['rtmapi',],
requires=['httplib2 (>=0.6.0)'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
],
use_2to3 = True,
)