-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 785 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import setuptools
with open('README.rst', 'r') as readme:
LONG_DESCRIPTION = readme.read()
setuptools.setup(
name='dlinfo',
use_scm_version=True,
maintainer='Catalysts Space',
maintainer_email='space@catalysts.cc',
description="Python wrapper for libc\'s dlinfo and dyld_find on Mac",
long_description=LONG_DESCRIPTION,
license="MIT",
url='https://github.com/Catalysts/python-dlinfo',
packages=setuptools.find_packages(),
setup_requires=[
'setuptools_scm',
],
tests_require=[
'pytest',
'pytest-cov',
# https://github.com/PyCQA/pylint/issues/2694
'pylint>=2.3.0',
],
classifiers=[
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
],
)