Fixes #657: Support act and developer-friendly environment

Signed-off-by: BugFest <bugfest.dev@pm.me>
This commit is contained in:
BugFest
2023-04-08 21:10:23 +02:00
committed by Muayyad Alsadi
parent b8a7593026
commit c55a2f4c26
6 changed files with 103 additions and 4 deletions

View File

@ -17,6 +17,9 @@ setup(
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
@ -35,6 +38,14 @@ setup(
"pyyaml",
"python-dotenv",
],
extras_require={
"devel": [
"flake8",
"black",
"pylint",
"pre-commit",
]
}
# test_suite='tests',
# tests_require=[
# 'coverage',