-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (40 loc) · 1.09 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
from pathlib import Path
from setuptools import setup
ROOT_DIRECTORY = Path(__file__).resolve().parent
description = "A python library to control Eaton HALO Home Smart Lights"
readme = (ROOT_DIRECTORY / "README.md").read_text()
changelog = (ROOT_DIRECTORY / "CHANGELOG.md").read_text()
long_description = readme + "\n\n" + changelog
DEV_REQUIRES = [
"black==23.3.0",
"flake8==5.0.4",
"flake8-bugbear==23.3.12",
"isort==5.11.5",
"twine==4.0.2",
"wheel==0.42.0",
]
setup(
name="halohome",
version="0.7.0",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
author="Naya Verdier",
url="https://github.com/nayaverdier/halohome",
license="MIT",
packages=["halohome"],
install_requires=[
"aiohttp~=3.7",
"bleak~=0.13",
"csrmesh~=0.10",
],
python_requires=">=3.7",
extras_require={
"dev": DEV_REQUIRES,
},
include_package_data=True,
)