forked from nordnet/python-freeipa-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 747 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 747 Bytes
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
#!/usr/bin/env python
import setuptools
with open('requirements.txt') as f:
required = f.readlines()
with open('README.md') as f:
readme = f.read()
setuptools.setup(
name='ipahttp',
version='0.1',
author='Andreas Calminder',
author_email='andreas.calminder@nordnet.se',
url='https://github.com/nordnet/python-freeipa-json',
description='Lightweight FreeIPA json/rpc library',
long_description=readme,
long_description_content_type='text/markdown',
license='MIT',
install_requires=required,
packages=setuptools.find_packages(),
classifiers=(
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
),
)