-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
executable file
·35 lines (32 loc) · 1019 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
#!/usr/bin/env python
"""Python package description."""
from pathlib import Path
from setuptools import setup
setup(
name="pyporscheconnectapi",
version="0.2.2",
author="Johan Isaksson",
author_email="[email protected]",
description="Python library and CLI for communicating with Porsche Connect API.",
long_description=Path.open("README.md").read(),
long_description_content_type="text/markdown",
include_package_data=True,
url="https://github.com/cjne/pyporscheconnectapi",
license="MIT",
packages=["pyporscheconnectapi"],
python_requires=">=3.10",
install_requires=["httpx<1", "BeautifulSoup4", "rich"],
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",
),
)