Rearrange package to allow for installability.

This commit is contained in:
Adam Coddington 2013-05-18 17:20:41 -07:00
parent c20dff8f70
commit 804cbf1521
7 changed files with 20 additions and 0 deletions

20
setup.py Normal file
View file

@ -0,0 +1,20 @@
from setuptools import setup, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='pyicloud',
version='0.1',
url='https://github.com/picklepete/pyicloud',
description=(
'PyiCloud is a module which allows pythonistas to '
'interact with iCloud webservices.'
),
author='Peter Evans',
author_email='evans.peter@gmail.com',
packages=find_packages(),
install_requires=required
)