diff --git a/setup.cfg b/setup.cfg index 2bc7ce7..b7e4789 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,2 @@ [aliases] test=pytest - -[wheel] -universal = 1 diff --git a/setup.py b/setup.py index 697103b..63336d2 100755 --- a/setup.py +++ b/setup.py @@ -22,12 +22,14 @@ long_description=longdesc, url='https://github.com/gnuradio/SigMF', classifiers=[ + 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', + 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - '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', ], entry_points={ 'console_scripts': [ diff --git a/tox.ini b/tox.ini index 433b33f..d9e8766 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] skip_missing_interpreters = True -envlist = py27, py34, py35, py36, py37 +envlist = py36, py37, py38, py39, py310 [testenv] usedevelop = True