-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
47 lines (43 loc) · 1.08 KB
/
setup.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from setuptools import setup, find_packages
TEST_REQUIRES = [
'flexmock>=0.9.7',
'nose',
'coverage'
]
INSTALL_REQUIRES = [
'requests>=1.0.0',
'pycrypto>=2.5',
'python-dateutil>=1.5'
]
setup(
name='uber.py',
version='1.0.2',
author='Tal Shiri',
author_email='[email protected]',
url='http://github.com/tals/uber.py',
description='Python client for Uber',
long_description=__doc__,
packages=find_packages(exclude=("tests", "tests.*",)),
zip_safe=False,
extras_require={
'tests': TEST_REQUIRES,
},
license='MIT',
tests_require=TEST_REQUIRES,
install_requires=INSTALL_REQUIRES,
test_suite='tests',
include_package_data=True,
entry_points={
'console_scripts': [
'ubercli = examples.ubercli:main',
]
},
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
)