-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (26 loc) · 829 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (26 loc) · 829 Bytes
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
26
27
28
29
#!/usr/bin/env python
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from setuptools import find_packages
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(
name='uber_rides',
version='0.6.0',
packages=find_packages(),
description='Official Uber API Python SDK',
long_description=readme,
url='https://github.com/uber/rides-python-sdk',
license='MIT',
author='Uber Technologies, Inc.',
author_email='dev-advocates@uber.com',
install_requires=['requests', 'pyyaml'],
extras_require={
':python_version == "2.7"': ['future'],
},
tests_require=['pytest', 'mock', 'vcrpy'],
keywords=['uber', 'api', 'sdk', 'rides', 'library'],
)