-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 982 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
33
34
from setuptools import setup, find_packages
with open("VERSION", "r") as f:
__version__ = f.read().strip()
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="rescreen",
author="Tim-Luca Lagmöller",
author_email="[email protected]",
description="Screen Manager with fractional scaling support for X11",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT License",
version=__version__,
url="https://github.com/lagmoellertim/rescreen",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
entry_points={
"console_scripts": [
"rescreen = rescreen.entrypoint:main",
]
},
install_requires=requirements,
packages=find_packages(),
)