-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 877 Bytes
/
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
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'obol',
version = '2.0.4',
description = 'useradd for ldap',
author = 'Hans Then',
author_email = '[email protected]',
url = 'https://github.com/hansthen/obol',
download_url = 'https://github.com/hansthen/obol/tarball/2.0',
keywords = ['useradd', 'groupadd', 'ldap'],
license = 'GPLv3',
long_description=read('README.rst'),
packages = ['obol'],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
entry_points={
'console_scripts': [
'obol = obol.main:main'
]
},
install_requires = [
'python-ldap',
'ldif3',
'retrying',
'cliff'
]
)