Skip to content

Commit f864e21

Browse files
committed
pyproject.toml and setup.cfg
1 parent 8df5b7b commit f864e21

22 files changed

+49
-2
lines changed

setup.py _setup.py

File renamed without changes.

pyproject.toml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[project]
2+
name = "keyszer"
3+
version = "0.4.99"
4+
description = "A smart, flexible key remapper for Linux/X11."
5+
keywords = [
6+
"keymapper"
7+
]
8+
maintainers = [
9+
{ name = "Josh Goebel", email = "hello@joshgoebel.com" }
10+
]
11+
readme = "README.md"
12+
license.file = "LICENSE"
13+
classifiers = [
14+
"Programming Language :: Python :: 3"
15+
]
16+
17+
[project.urls]
18+
Home-page = "https://github.com/jgoebel/keyszer"
19+
20+
[build-system]
21+
requires = ["setuptools"]
22+
build-backend = "setuptools.build_meta"
23+

setup.cfg

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[metadata]
2+
platforms =
3+
linux
4+
project_urls =
5+
Bug Tracker = https://github.com/jgoebel/keyszer/issues
6+
7+
[options]
8+
packages = find:
9+
package_dir=
10+
=src
11+
install_requires =
12+
evdev
13+
python-xlib
14+
inotify_simple
15+
appdirs
16+
ordered_set
17+
# is this right, I really have no idea?
18+
dev_requires =
19+
pytest
20+
pytest-asyncio
21+
looptime
22+
[options.packages.find]
23+
where=src
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# -*- coding: utf-8 -*-
22
from .info import __version__ # , __name__
33

4+
VERSION = __version__

keyszer/cli.py src/keyszer/cli.py

File renamed without changes.
File renamed without changes.

keyszer/info.py src/keyszer/info.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
__version__ = "0.4.99"
66

7-
__description__ = "A smart, flexible keyboard remapping tool for the X environment."
7+
__description__ = "A smart, flexible key remapper for Linux/X11."
88

99
__doc__ = """
10-
``keyszer`` is a smart and flexible keyboard remapping tool for the X environment.
10+
``keyszer`` is a smart and flexible key remapper for Linux/X11t.
1111
It's like ``xmodmap`` but better.
1212
1313
- Has high-level and flexible remapping mechanisms, such as
File renamed without changes.

keyszer/key.py src/keyszer/key.py

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)