aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-02-04 14:13:22 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-02-04 14:41:44 +0100
commite3fd7b2f1de32dfedce03470571f383b407096cb (patch)
tree8b72c3e073cbcf965826871809a441c3238b1296 /setup.cfg
parent862e79635065891e7e9ef5ea7957235b154ac3db (diff)
downloadminishell_test-e3fd7b2f1de32dfedce03470571f383b407096cb.tar.gz
minishell_test-e3fd7b2f1de32dfedce03470571f383b407096cb.tar.bz2
minishell_test-e3fd7b2f1de32dfedce03470571f383b407096cb.zip
Moving preview to imgur, Added package config in setup.cfg
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg30
1 files changed, 30 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 2852e44..b6f3073 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,2 +1,32 @@
+[metadata]
+name = minishell_test
+version = 0.0.2
+license = GPL2
+license_file = LICENSE
+description = test for the minishell project of school 42
+long_description = file: README.md
+long_description_content_type = text/markdown
+author = Charles Cabergs
+author_email = me@cacharle.xyz
+maintainer = Charles Cabergs
+maintainer_email = me@cacharle.xyz
+url = https://github.com/cacharle/minishell_test
+classifiers =
+ Intended Audience :: Developers
+ Programming Language :: Python :: 3.6
+ Programming Language :: Python :: 3.7
+ Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
+ Operating System :: MacOS
+ Operating System :: POSIX :: Linux
+
+[options]
+packages = find:
+python_requires = >=3.6
+
[flake8]
ignore = E501,E221,W503,E241
+
+[mypy]
+check_untyped_defs = true
+disallow_incomplete_defs = true