-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (45 loc) · 1.58 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (45 loc) · 1.58 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
51
# SPDX-FileCopyrightText: 2022-2023 KUNBUS GmbH
#
# SPDX-License-Identifier: MIT
# -*- coding: utf-8 -*-
"""Setup-script for revpi-device-info."""
__author__ = "Sven Sager"
__copyright__ = "Copyright (C) 2023 KUNBUS GmbH"
__license__ = "MIT"
from setuptools import find_namespace_packages, setup
from src.revpi_device_info.__about__ import __version__
with open("README.md") as fh:
# Load long description from readme file
long_description = fh.read()
setup(
name="revpi_device_info",
version=__version__,
packages=find_namespace_packages("src"),
package_dir={"": "src"},
include_package_data=True,
python_requires=">= 3.6",
install_requires=[],
entry_points={
"console_scripts": [
"revpi-device-info = revpi_device_info.cli:main",
]
},
platforms=["revolution pi"],
url="https://github.com/RevolutionPi/python3-revpi-device-info",
license="LGPLv2",
author="Nicolai Buchwitz",
author_email="n.buchwitz@kunbus.com",
description="RevPi device information from RevPi HAT EEPROM",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["revpi", "revolution pi", "revpimodio", "plc", "automation"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)