Rearrange package to allow for installability.
This commit is contained in:
parent
c20dff8f70
commit
804cbf1521
7 changed files with 20 additions and 0 deletions
20
setup.py
Normal file
20
setup.py
Normal 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
|
||||||
|
)
|
Loading…
Reference in a new issue