-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
43 lines (33 loc) · 1021 Bytes
/
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='BlaBlaCar API',
version='0.2.3',
description='BlaBlaCar Client Api',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/arrrlo/BlaBlaCar-Client-Api',
licence='MIT',
author='Ivan Arar',
author_email='ivan.arar@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
keywords='blablacar, api, trip, distance',
packages=['blablacarapi'],
install_requires=[
'requests~=2.20.0',
'click ~= 6.7',
'colorama~=0.3'
],
project_urls={
'Source': 'https://github.com/arrrlo/BlaBlaCar-Client-Api',
},
)