Browse Source

repare release v1.2.0

Fabian Peter Hammerle 4 years ago
parent
commit
f0afd9681d
2 changed files with 6 additions and 2 deletions
  1. 1 1
      CHANGELOG.md
  2. 5 1
      setup.py

+ 1 - 1
CHANGELOG.md

@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
 
-## Unreleased
+## [1.2.0] 2019-11-05
 ### Added
 - Support for Mac OS X
 

+ 5 - 1
setup.py

@@ -10,7 +10,7 @@ setuptools.setup(
     author_email='fabianpeter.hammerle@catalysts.cc',
     maintainer='Catalysts Space',
     maintainer_email='space@catalysts.cc',
-    description='Python wrapper for libc\'s dlinfo',
+    description="Python wrapper for libc\'s dlinfo and dyld_find on Mac",
     long_description=LONG_DESCRIPTION,
     url='https://code.grasp-open.com/grasp-tools/python-dlinfo',
     packages=setuptools.find_packages(),
@@ -23,4 +23,8 @@ setuptools.setup(
         # https://github.com/PyCQA/pylint/issues/2694
         'pylint>=2.3.0',
     ],
+    classifiers=[
+        'Operating System :: MacOS :: MacOS X',
+        'Operating System :: POSIX :: Linux',
+    ],
 )