-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
50 lines (48 loc) · 2.12 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
46
47
48
49
50
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="x11pygrid",
author="Hilary Jendrasiak", # AFAIK it's foreseen for the package author; That's the awkward field I was talking about;/
author_email="[email protected]",
description="Easily organize your open windows by tiling, resizing and positioning them. It supports multiple monitors!",
keywords="X11, tilt, resize",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://pypi.org/project/x11pygrid/",
project_urls={ # These urls are IMHO going to fix the aforementioned awkwardness.
"Documentation": "https://github.com/pkkid/pygrid/blob/master/README.md",
"Bug Reports": "https://github.com/pkkid/pygrid/issues",
"Source Code": "https://github.com/pkkid/pygrid",
},
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
classifiers=[
# see https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"Topic :: Desktop Environment",
"Topic :: Desktop Environment :: Window Managers",
"Topic :: Utilities",
"Intended Audience :: End Users/Desktop",
"Environment :: X11 Applications",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
python_requires=">=3.6",
install_requires=[
"Xlib",
"single_process",
"PyGObject", # this is "gi" requirement
# pycairo was problematic for pipx. Luckily it may be redundant... is it?
# "pycairo", # this is "gi" requirement
],
scripts=['src/bin/x11pygrid'],
)