forked from rfverbruggen/rachiopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 833 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
"""Rachiopy setup script."""
from setuptools import setup
setup(
name='RachioPy',
version='0.1.3',
author='Robbert Verbruggen',
author_email='[email protected]',
packages=['rachiopy'],
install_requires=['httplib2'],
url='https://github.com/rfverbruggen/rachiopy',
download_url='https://github.com/rfverbruggen/rachiopy/archive/0.1.3.tar.gz',
license='MIT',
description='A Python module for the Rachio API.',
platforms='Cross Platform',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
]
)