-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·72 lines (66 loc) · 1.37 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python3
import setuptools
from setuptools import find_packages
REQUIREMENTS = [
"aiocron",
"aiofiles",
"aiohttp",
"aioinflux",
"astral",
"asyncio",
"aiomqtt",
"defusedxml",
"geopy",
"gpxpy",
# "habapp", # no-go for py312 elvcat
"holidays",
"isodate",
"lxml",
"metpy",
"networkx",
"numpy",
"paho-mqtt",
"pandas",
"pylunar",
"python-dotenv",
"python-dotenv",
"python-openhab",
"pytibber",
"pyyaml",
"requests",
"scikit-learn",
"skodaconnect",
"smappy",
"watchfiles",
]
SETUP_REQUIREMENTS = [
"setuptools >=28",
"setuptools_scm",
"pytest-runner",
]
TEST_REQUIREMENTS = [
"black>=20.8b0",
"flake8",
"isort",
"pytest",
"pytest-asyncio",
"rstcheck",
]
EXTRAS_REQUIRE = {"tests": TEST_REQUIREMENTS}
setuptools.setup(
name="pyrotun",
description="Python code for Råtun 40",
author="Håvard Berland",
author_email="[email protected]",
url="https://github.com/berland/pyrotun",
keywords=[],
license="Private",
platforms="any",
include_package_data=False,
packages=find_packages(include=["pyrotun*"]),
install_requires=REQUIREMENTS,
setup_requires=SETUP_REQUIREMENTS,
use_scm_version={"write_to": "pyrotun/version.py"},
test_suite="tests",
extras_require=EXTRAS_REQUIRE,
)