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

Commit e2e030e

Browse files
committed
no requirements.txt needed
1 parent e75fd61 commit e2e030e

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,21 @@
66

77
__location__ = os.path.join(os.getcwd(), os.path.dirname(inspect.getfile(inspect.currentframe())))
88

9-
def get_install_requirements(path):
10-
content = open(os.path.join(__location__, path)).read()
11-
return [req for req in content.split('\\n') if req != '']
12-
139
def read(fname):
1410
return open(os.path.join(__location__, fname)).read()
1511

1612
def setup_package():
17-
install_reqs = get_install_requirements('requirements.txt')
1813
setuptools.setup(
1914
name='nsenter',
20-
version='0.1',
15+
version='0.1.1',
2116
url='https://github.com/zalando/python-nsenter',
22-
description='',
17+
description='Enter kernel namespaces from Python',
2318
author='Henning Jacobs',
2419
author_email='[email protected]',
2520
long_description=read('README.rst'),
2621
classifiers=['Development Status :: 4 - Beta', 'Programming Language :: Python'],
2722
test_suite='tests',
2823
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
29-
install_requires=install_reqs,
3024
entry_points={'console_scripts': ['nsenter = nsenter:main']}
3125
)
3226

0 commit comments

Comments
 (0)