-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 812 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (27 loc) · 812 Bytes
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
from pathlib import Path
from setuptools import setup
def read(name):
return open(Path(Path(__file__).parent, name)).read()
setup(
name="lighten",
version="0.2.0",
packages=["lighten", "lightend"],
install_requires=["pygobject", "hid"],
test_suite="test",
entry_points={
"console_scripts": [
"lighten = lighten.__main__:main",
"lightend = lightend.__main__:main",
],
},
description="Intelligent monitor brightness control utility",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/jcrd/lighten",
license="MIT",
author="James Reed",
author_email="james@twiddlingbits.net",
classifiers=[
"License :: OSI Approved :: MIT License",
],
)