-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 868 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='memberizer',
version='5',
description='Take a member file and create LDAP accounts',
long_description="Load in a JSON file with members and create LDAP accounts with the member groups.",
url='https://www.github.com/chotee/memberizer',
license='GNU General Public License v3 or later (GPLv3+)',
author='Chotee',
author_email='[email protected]',
packages = find_packages(exclude=['*.test']),
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'],
},
install_requires=['py', 'python-gnupg', 'python-ldap', 'passlib'],
tests_require=['pytest', 'fakeldap'],
entry_points = {
'console_scripts': [
'memberizer = memberizer.m2a:main'
]
}
)