-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 836 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
"""" Setup """
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="hackaru_timeular",
version="0.2.0",
description="Track your time with the Timeular cube and Hackaru",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pSub/hackaru-timeular",
author="Pascal Wittmann",
author_email="[email protected]",
license="MIT",
packages=["hackaru_timeular"],
install_requires=[
"bleak",
"recordclass",
"appdirs",
"requests",
"PyYAML",
"tenacity",
"yamale",
],
entry_points={
"console_scripts": ["hackaru-timeular=hackaru_timeular:main"],
},
)