forked from jamesremuscat/pyze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 995 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
from setuptools import setup, find_packages
_VERSION = '0.6.0'
setup(
name='PyZE',
version=_VERSION,
description='Unofficial client and API for Renault ZE',
author='James Muscat',
author_email='[email protected]',
url='https://github.com/jamesremuscat/pyze',
packages=find_packages('src'),
package_dir={'': 'src'},
long_description="Unofficial client and API for Renault ZE.",
install_requires=[
'dateparser',
'pyjwt',
'python-dateutil',
'requests',
'simplejson',
'tabulate',
'tzlocal'
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
'pytest-cov'
],
entry_points={
'console_scripts': [
'pyze = pyze.cli.__main__:main'
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)