Skip to content
This repository was archived by the owner on Dec 5, 2022. It is now read-only.

Commit 9133bc1

Browse files
committed
bump version and add classifiers
1 parent 8cf2373 commit 9133bc1

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,19 @@ def read(fname):
1212
def setup_package():
1313
setuptools.setup(
1414
name='nsenter',
15-
version='0.1.2',
15+
version='0.1.3',
1616
url='https://github.com/zalando/python-nsenter',
1717
description='Enter kernel namespaces from Python',
1818
author='Henning Jacobs',
1919
author_email='[email protected]',
2020
long_description=read('README.rst'),
21-
classifiers=['Development Status :: 4 - Beta', 'Programming Language :: Python'],
21+
classifiers=[
22+
'Development Status :: 4 - Beta',
23+
'Programming Language :: Python',
24+
'Programming Language :: Python :: 3.4',
25+
'Programming Language :: Python :: Implementation :: CPython',
26+
'Operating System :: POSIX :: Linux',
27+
'License :: OSI Approved :: Apache Software License'],
2228
test_suite='tests',
2329
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
2430
entry_points={'console_scripts': ['nsenter = nsenter:main']}

0 commit comments

Comments
 (0)