diff --git a/bondpy/setup.py b/bondpy/setup.py index eba35ad..9e2588d 100644 --- a/bondpy/setup.py +++ b/bondpy/setup.py @@ -18,13 +18,14 @@ keywords=['ROS'], classifiers=[ 'Intended Audience :: Developers', - 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', 'Topic :: Software Development', ], description=( 'Python implementation of bond.' ), - license='BSD', - tests_require=['pytest'], + extras_require={ + 'test': ['pytest'], + }, + license='BSD-3-Clause', )