Skip to content

Commit c60e442

Browse files
committed
setup.py: update maintainer info; fix tests_require; added classifiers
1 parent e93e3e5 commit c60e442

1 file changed

Lines changed: 12 additions & 8 deletions

File tree

setup.py

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
setuptools.setup(
77
name='dlinfo',
88
use_scm_version=True,
9-
maintainer='Catalysts Space',
10-
maintainer_email='space@catalysts.cc',
9+
maintainer='Cloudflight Space',
10+
maintainer_email='space@cloudflight.io',
1111
description="Python wrapper for libc\'s dlinfo and dyld_find on Mac",
1212
long_description=LONG_DESCRIPTION,
1313
license="MIT",
@@ -16,13 +16,17 @@
1616
setup_requires=[
1717
'setuptools_scm',
1818
],
19-
tests_require=[
20-
'pytest',
21-
'pytest-cov',
22-
# https://github.com/PyCQA/pylint/issues/2694
23-
'pylint>=2.3.0',
24-
],
19+
tests_require=['pytest'],
2520
classifiers=[
21+
# https://pypi.org/classifiers/
22+
"Development Status :: 5 - Production/Stable",
23+
"Intended Audience :: Developers",
24+
# see .github/workflows/python.yml
25+
"Programming Language :: Python :: 3.5",
26+
"Programming Language :: Python :: 3.6",
27+
"Programming Language :: Python :: 3.7",
28+
"Programming Language :: Python :: 3.8",
29+
"Programming Language :: Python :: 3.9",
2630
'Operating System :: MacOS :: MacOS X',
2731
'Operating System :: POSIX :: Linux',
2832
],

0 commit comments

Comments
 (0)