Skip to content

Commit

Permalink
pip dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
anwarnunez committed Aug 22, 2018
1 parent 89da67b commit 3993158
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Expand Up @@ -12,11 +12,11 @@
'bdist_wininst', 'install_egg_info', 'egg_info', 'easy_install')).intersection(sys.argv)) > 0:
# monkey patch distutils
from setuptools import setup
from setuptools.command.install import install
else:
# use standard library
from distutils.core import setup

from distutils.command.install import install
from distutils.command.install import install

def set_default_options(optfile):
import os
Expand Down Expand Up @@ -44,7 +44,7 @@ def run(self):

def main(**kwargs):
setup(name="""cottoncandy""",
version='0.1.0rc2',
version='0.1.0rc3',
description="""sugar for S3""",
author='Anwar O. Nunez-Elizalde',
author_email='anwarnunez@gmail.com',
Expand All @@ -59,6 +59,8 @@ def main(**kwargs):
cmdclass=dict(install=my_install),
include_package_data=True,
long_description=long_description,
install_requires=['six', 'botocore', 'boto3', 'python-dateutil',
'PyDrive', 'pycrypto'],
**kwargs)

if __name__ == "__main__":
Expand Down

0 comments on commit 3993158

Please sign in to comment.