Merge pull request #13 from k4yt3x/feature/add_classifiers

Add python minor version classifiers
This commit is contained in:
K4YT3X 2021-01-13 01:50:43 +00:00 committed by GitHub
commit c6f001ed6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,8 +32,12 @@ setuptools.setup(
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
entry_points={"console_scripts": ["wg-meshconf = wg_meshconf:main"]},
)
)