forked from waldur/python-freeipa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 1.1 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
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
'requests',
]
tests_requires = [
'responses',
]
setup(
name='python-freeipa',
version='0.2.3',
author='OpenNode Team',
author_email='[email protected]',
url='http://waldur.com',
description='Lightweight FreeIPA client',
long_description=open('README.rst').read(),
install_requires=install_requires,
extras_require={
'tests': tests_requires,
},
package_dir={'': 'src'},
packages=find_packages('src', exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
test_suite='python_freeipa.tests.suite',
classifiers=(
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Systems Administration :: Authentication/Directory'
)
)