-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (21 loc) · 870 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
import os
from setuptools import setup, find_packages
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
VERSION_FILE = os.path.join(BASE_DIR, 'resttools', 'VERSION')
with open(VERSION_FILE) as f:
VERSION = f.readlines()[-1].strip()
with open(os.path.join(BASE_DIR, 'README.md')) as f:
LONG_DESCRIPTION = f.read()
setup(name='uw-iam-resttools',
version=VERSION,
url='https://github.com/UWIT-IAM/iam-resttools',
author='UW-IT Identity and Access Management',
author_email='[email protected]',
description='UW-IT REST library for IAM APIs',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license='Apache License, Version 2.0',
packages=find_packages(),
include_package_data=True,
install_requires=['lxml', 'python-dateutil', 'urllib3', 'jinja2', 'six']
)