-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
50 lines (47 loc) · 1.88 KB
/
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
42
43
44
45
46
47
48
49
50
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
INSTALL_REQUIRED = (HERE / "requirements.txt").read_text()
SETUP_REQUIRED = (HERE / "setup_requirements.txt").read_text()
TEST_REQUIRED = (HERE / "test_requirements.txt").read_text()
setup(
name='weconnect-mqtt',
packages=['weconnect_mqtt'],
version=open("weconnect_mqtt/__version.py").readlines()[-1].split()[-1].strip("\"'"),
description='MQTT Client that publishes data from Volkswagen WeConnect',
long_description=README,
long_description_content_type="text/markdown",
author='Till Steinbach',
keywords='weconnect, we connect, carnet, car net, volkswagen, vw, telemetry, mqtt, smarthome',
url='https://github.com/tillsteinbach/WeConnect-mqtt',
project_urls={
'Funding': 'https://github.com/sponsors/WeConnect-mqtt',
'Source': 'https://github.com/tillsteinbach/WeConnect-mqtt',
'Bug Tracker': 'https://github.com/tillsteinbach/WeConnect-mqtt/issues'
},
license='MIT',
install_requires=INSTALL_REQUIRED,
entry_points={
'console_scripts': [
'weconnect-mqtt = weconnect_mqtt.weconnect_mqtt_base:main',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Utilities',
'Topic :: System :: Monitoring',
'Topic :: Home Automation',
],
python_requires='>=3.8'
)