-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 957 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
import setuptools
setuptools.setup(
name='weo',
version='0.0.4',
description='WiCS Electronic Office',
url='https://github.com/wics-uw/weo',
author='Elana Hashman',
author_email='[email protected]',
maintainer='Women in Computer Science Systems Committee',
maintainer_email='[email protected]',
license='GPLv2',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Topic :: System :: Systems Administration :: Authentication/Directory',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 2.7',
],
keywords='weo',
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'weo=weo.cli:main',
]
},
install_requires=[
'python-ldap',
'python-kadmin',
'python-dateutil',
],
)