-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
52 lines (48 loc) · 1.85 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- coding: utf-8 -*-
from os import path
from setuptools import find_packages
from setuptools import setup
from userdocker import __doc__
from userdocker import __version__
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='userdocker',
version=__version__,
description=__doc__.strip().splitlines()[0].strip(),
long_description=long_description,
url='https://github.com/joernhees/userdocker',
author='Jörn Hees',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Security',
'Topic :: Software Development',
'Topic :: System',
'Topic :: System :: Clustering',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Emulators',
'Topic :: System :: Operating System',
'Topic :: System :: Systems Administration',
'Topic :: System :: Systems Administration :: Authentication/Directory',
'Topic :: Utilities',
],
keywords='docker user limit admin hpc cluster computing permissions',
packages=find_packages(),
include_package_data=True,
data_files=[('/etc/userdocker/', ['userdocker/config/default.py'])],
entry_points={'console_scripts': ['userdocker=userdocker.userdocker:main']},
zip_safe=True,
)