Skip to content

Commit

Permalink
pyproject.toml and setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgoebel committed Jun 8, 2022
1 parent 8df5b7b commit f864e21
Show file tree
Hide file tree
Showing 22 changed files with 49 additions and 2 deletions.
File renamed without changes.
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[project]
name = "keyszer"
version = "0.4.99"
description = "A smart, flexible key remapper for Linux/X11."
keywords = [
"keymapper"
]
maintainers = [
{ name = "Josh Goebel", email = "[email protected]" }
]
readme = "README.md"
license.file = "LICENSE"
classifiers = [
"Programming Language :: Python :: 3"
]

[project.urls]
Home-page = "https://github.com/jgoebel/keyszer"

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

23 changes: 23 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[metadata]
platforms =
linux
project_urls =
Bug Tracker = https://github.com/jgoebel/keyszer/issues

[options]
packages = find:
package_dir=
=src
install_requires =
evdev
python-xlib
inotify_simple
appdirs
ordered_set
# is this right, I really have no idea?
dev_requires =
pytest
pytest-asyncio
looptime
[options.packages.find]
where=src
1 change: 1 addition & 0 deletions keyszer/__init__.py → src/keyszer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from .info import __version__ # , __name__

VERSION = __version__
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions keyszer/info.py → src/keyszer/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

__version__ = "0.4.99"

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

__doc__ = """
``keyszer`` is a smart and flexible keyboard remapping tool for the X environment.
``keyszer`` is a smart and flexible key remapper for Linux/X11t.
It's like ``xmodmap`` but better.
- Has high-level and flexible remapping mechanisms, such as
Expand Down
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.
File renamed without changes.

0 comments on commit f864e21

Please sign in to comment.