Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorPyfisch <pyfisch@posteo.org>2021-04-05 15:30:18 +0200
committerPyfisch <pyfisch@posteo.org>2021-04-05 15:59:10 +0200
commit7f691ce1c992c16551459162fbef593daad1e4c8 (patch)
tree145b4e74397d6f9337d7a76fd6cf9f0b248d26a5 /setup.cfg
parentc284092a15038355893c3ae20a42e3eb01d8295c (diff)
Switch to setup.cfg
Configure setup.cfg to find all Python packages. Add more metadata to package.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg35
1 files changed, 35 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 00000000..ccbddf8a
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,35 @@
+[metadata]
+name = archinstall
+version = attr: archinstall.__version__
+description = Arch Linux installer - guided, templates etc.
+author = Anton Hvornum
+author_email = anton@hvornum.se
+long_description = file: README.md
+long_description_content_type = text/markdown
+license = GPL
+license_files =
+ LICENSE
+project_urls =
+ Source = https://github.com/archlinux/archinstall
+ Documentation = https://archinstall.readthedocs.io/
+classifers =
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
+ License :: OSI Approved :: GNU General Public License v3 (GPLv3)
+ Operating System :: POSIX :: Linux
+
+[options]
+packages = find:
+python_requires = >= 3.8
+
+[options.packages.find]
+include =
+ archinstall
+ archinstall.*
+
+[options.package_data]
+archinstall =
+ examples/*.py
+ profiles/*.py
+ profiles/applications/*.py