forked from CJNE/pyporscheconnectapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (28 loc) · 832 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="pyporscheconnectapi",
version="0.0.13",
author="Johan Isaksson",
author_email="[email protected]",
description="Python library and CLI for communicating with Porsche Connect API.",
include_package_data=True,
url="https://github.com/cjne/pyporscheconnectapi",
license="MIT",
packages=["pyporscheconnectapi"],
python_requires=">=3.6",
install_requires=["aiohttp<4"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Operating System :: OS Independent",
],
setup_requires=("pytest-runner"),
tests_require=(
"asynctest",
"pytest-cov",
"pytest-asyncio",
"pytest-trio",
"pytest-tornasync",
),
)