forked from CJNE/pyporscheconnectapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (30 loc) · 951 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="pyporscheconnectapi",
version="0.1.3",
author="Johan Isaksson",
author_email="[email protected]",
description="Python library and CLI for communicating with Porsche Connect API.",
long_description=open("README.md", 'r').read(),
long_description_content_type='text/markdown',
include_package_data=True,
url="https://github.com/cjne/pyporscheconnectapi",
license="MIT",
packages=["pyporscheconnectapi"],
python_requires=">=3.6",
install_requires=["aiohttp<4","beautifulsoup4"],
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",
),
)