aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorPiotr Miller <nwg.piotr@gmail.com>2020-07-20 22:18:21 +0200
committerGitHub <noreply@github.com>2020-07-20 22:18:21 +0200
commit02456a585f1e17bd034f0e06b884e525304a51a5 (patch)
tree8cab63125b7446243d53232a002b4b669107e8f4 /setup.cfg
parente56b7bd40f053bf7c6f3b6c92fb700f66495bf97 (diff)
parent26d4d8950a395e9db7fb66d476785335e6322d34 (diff)
downloadautotiling-1.1.tar.gz
Merge pull request #14 from nschloe/package-structurev1.1
Python package structure
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg38
1 files changed, 38 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..7155b99
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,38 @@
+[metadata]
+name = autotiling
+version = 1.1
+author = Piotr Miller
+author_email = nwg.piotr@gmail.com
+description = Automatically switch the horizontal/vertical window split orientation in i3 and sway
+url = https://github.com/nwg-piotr/autotiling
+project_urls =
+ Code=https://github.com/nwg-piotr/autotiling
+ Issues=https://github.com/nwg-piotr/autotiling/issues
+long_description = file: README.md
+long_description_content_type = text/markdown
+license = GPL-3.0-or-later
+license_file = LICENSE
+classifiers =
+ Development Status :: 4 - Beta
+ License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
+ Operating System :: OS Independent
+ Programming Language :: Python
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.6
+ Programming Language :: Python :: 3.7
+ Programming Language :: Python :: 3.8
+
+[options]
+packages = find:
+install_requires =
+ importlib_metadata;python_version<"3.8"
+ i3ipc
+python_requires = >=3.6
+setup_requires =
+ setuptools>=42
+ wheel
+
+
+[options.entry_points]
+console_scripts =
+ autotiling = autotiling.main:main