-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
26 lines (22 loc) · 831 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
from setuptools import setup
def get_requirements():
with open("requirements.txt", "r") as f:
return f.read().split("\n")
setup(
name="system76-backlight-manager",
version="0.2",
description="Control the backlight of your System76 laptop",
url="https://github.com/JeffLabonte/System76-Backlight-Manager-cli",
author="Jean-François Labonté",
author_email="[email protected]",
include_package_data=True,
install_requires=get_requirements(),
license="GPLv3",
packages=[
"system76_backlight_manager/",
"system76_backlight_manager/services",
"system76_backlight_manager/paths",
"system76_backlight_manager/schema",
],
entry_points={"console_scripts": ["system76-backlight-manager=system76_backlight_manager.__main__:main"]},
)