-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 690 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 690 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
import sys
from setuptools import setup, find_packages
open_kwds = {}
if sys.version_info > (3,):
open_kwds['encoding'] = 'utf-8'
setup(name='leafpy',
version='0.2.6',
description='Lightweight python interface to the nissan leaf.',
classifiers=[],
keywords='',
author='Nate Ricklin',
author_email='nate.ricklin@gmail.com',
url='https://github.com/nricklin/leafpy',
license='MIT',
packages=find_packages(exclude=['docs','tests','examples']),
include_package_data=True,
zip_safe=False,
install_requires=['requests','pycryptodome'],
setup_requires=['pytest-runner'],
tests_require=['pytest','vcrpy']
)