summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
-rw-r--r--setup.py11
2 files changed, 16 insertions, 2 deletions
diff --git a/README.md b/README.md
index a235172..bee94e8 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,12 @@ python-gitlab depends on:
## State
-python-gitlab is a work in progress, although already usable. Changes in the API might happen.
+python-gitlab >= 0.3 is considered stable.
+
+## Bugs reports
+
+Please report bugs and feature requests at
+https://github.com/gpocentek/python-gitlab/issues
## ToDo
diff --git a/setup.py b/setup.py
index 82fe24e..4783ffe 100644
--- a/setup.py
+++ b/setup.py
@@ -21,5 +21,14 @@ setup(name='python-gitlab',
license='LGPLv3',
url='https://github.com/gpocentek/python-gitlab',
py_modules=['gitlab'],
- scripts=['gitlab']
+ scripts=['gitlab'],
+ classifiers=[
+ 'Development Status :: 5 - Production/Stable',
+ 'Environment :: Console',
+ 'Intended Audience :: System Administrators',
+ 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
+ 'Natural Language :: English',
+ 'Operating System :: POSIX',
+ 'Operating System :: Microsoft :: Windows'
+ ]
)