Skip to content

Commit

Permalink
Setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-konshin committed Apr 25, 2017
1 parent 119879a commit 067cb80
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 20 deletions.
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ coverage>=4.3.1
coveralls>=1.1
discover>=0.4.0
requests-mock>=1.2.0
setuptools
28 changes: 8 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,17 @@
from distutils.core import setup
from setuptools import setup, find_packages

VERSION = '0.7.7'

setup(
name='ringcentral',
packages=[
'ringcentral',
'ringcentral.http',
'ringcentral.platform',
'ringcentral.subscription',
'ringcentral.test',
'ringcentral.core'
],
packages=find_packages(exclude=[]),
version=VERSION,
description='RingCentral Connect Platform Python SDK',
author="Kirill Konshin @ RingCentral, Inc.",
author_email="devsupport@ringcentral.com",
url="https://github.com/ringcentral/ringcentral-python",
download_url="https://github.com/ringcentral/ringcentral-python/tarball/%s" % VERSION,
author='Kirill Konshin @ RingCentral, Inc.',
author_email='devsupport@ringcentral.com',
url='https://github.com/ringcentral/ringcentral-python',
download_url='https://github.com/ringcentral/ringcentral-python/tarball/%s' % VERSION,
keywords=['sdk', 'ringcentral', 'connect', 'platform', 'api', 'python'],
install_requires=[
'observable>=0.3.1',
'pubnub==4.*',
'pycryptodome>=3.4.4',
'requests>=2.7.0'
],
install_requires=[i.strip() for i in open('requirements.txt').readlines()],
classifiers=[]
)
)

0 comments on commit 067cb80

Please sign in to comment.