-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.7 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (46 loc) · 1.7 KB
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# Read the contents of README.md
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
# Read the requirements
with open("requirements.txt", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="tpms",
version="2.1.2",
description="A Python library for interfacing with TPMS (Tyre Pressure Monitoring System) devices",
long_description=long_description,
long_description_content_type="text/markdown",
author="Sam Conway",
author_email="pypi@invertica.co.uk",
url="https://github.com/samskjord/tpms", # Update with your repository URL
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Hardware",
"Topic :: System :: Hardware :: Hardware Drivers",
],
python_requires=">=3.6",
keywords="tpms, tyre pressure, monitoring, sensors, automotive",
project_urls={
"Bug Reports": "https://github.com/samskjord/tpms/issues",
"Source": "https://github.com/samskjord/tpms",
},
entry_points={
"console_scripts": [
"tpms-monitor=tpms_lib.example:main",
],
},
)