-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (47 loc) · 1.53 KB
/
setup.py
File metadata and controls
55 lines (47 loc) · 1.53 KB
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
#!/usr/bin/env python
import os
import setuptools
import logging
log = logging.getLogger(__name__)
from setuptools import find_packages
with open("requirements.txt", "r") as f:
reqs = f.readlines()
with open("requirements_dev.txt", "r") as f:
dev_reqs = f.readlines()
test_reqs = [
"pytest>=3",
]
setuptools.setup(
name="backlight_utility",
author="Felix Jung",
author_email="jung@posteo.de",
python_requires=">=3.9",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
description="Screen brightness control utility for at least Thinkpad T490",
entry_points={
"console_scripts": [
"backlight_utility=backlight_utility.cli:app",
],
},
packages=find_packages(include=["backlight_utility", "backlight_utility.*"]),
# ext_modules=cythonize("ridepy/**/*.pyx", language='c++',),
# ext_modules=cythonize(extensions, compiler_directives={"embedsignature": True}),
install_requires=reqs,
extras_require={"dev": dev_reqs},
license="MIT license",
keywords="backlight_utility",
test_suite="tests",
tests_require=test_reqs,
url="https://github.com/fxjung/backlight_utility",
version="0.1.0",
zip_safe=False,
)