Select Git revision
-
nimrod authored
- Didn't specify minor Python versions (just 2 and 3). - Removed test make target, instead use tox. - The make clean target removes just unshare/constants.py now. - Removed testing packages from dev dependencies and the test dependency list, dev depends just on tox (the other packages are install in the virtualenv). - Cleaned tox.ini a bit.
nimrod authored- Didn't specify minor Python versions (just 2 and 3). - Removed test make target, instead use tox. - The make clean target removes just unshare/constants.py now. - Removed testing packages from dev dependencies and the test dependency list, dev depends just on tox (the other packages are install in the virtualenv). - Cleaned tox.ini a bit.
setup.py 817 B
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='unshare',
version='0.2.0',
description='Pure Python Linux namespace management.',
long_description=open('README.rst', 'r').read(),
url='https://www.shore.co.il/git/python-unshare',
author='Nimrod Adar',
author_email='nimrod@shore.co.il',
license='MIT',
classifiers=[
'Development status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Intended Audience :: System Administrators',
'Topic :: Utilities',
],
keywords='containers namespace linux',
packages=find_packages(exclude=['tests']),
install_requires=[],
extras_require={
'dev': ['tox']},
)