diff options
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -1,6 +1,6 @@ [metadata] name = minishell_test -version = 0.0.2 +version = 1.0.0 license = GPL2 license_file = LICENSE description = test for the minishell project of school 42 @@ -11,12 +11,16 @@ author_email = me@cacharle.xyz maintainer = Charles Cabergs maintainer_email = me@cacharle.xyz url = https://github.com/cacharle/minishell_test +project_urls = + Tracker = https://github.com/cacharle/minishell_test/issues classifiers = - Intended Audience :: Developers Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Intended Audience :: Developers + Environment :: Console + License :: OSI Approved :: GNU General Public License v2 (GPLv2) Operating System :: MacOS Operating System :: POSIX :: Linux @@ -24,9 +28,13 @@ classifiers = packages = find: python_requires = >=3.6 +[options.entry_points] +console_scripts = + minishell-test = minishell_test.__main__:main + [flake8] -ignore = E501,E221,W503,E241 -select = E,F,W,C4,N,ECE,CCR +ignore = E501,E221,W504,E241 +select = E,F,W,C4,N max-cognitive-complexity = 6 [mypy] |
