-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (28 loc) · 862 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
#!/usr/bin/env python
#
# INDI-Tools/setup.py
#
# Author: Daniel Clark, 2016
'''
This is the setup.py installation script to install the awsutils
package
'''
# Import packages
from setuptools import find_packages, setup
# Use disutils' setup function to install the package
setup(name='INDI-Tools',
version='0.0.7',
description='Python utilities developed by FCP-INDI',
author='Daniel Clark',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3'
],
url='https://github.com/FCP-INDI/INDI-Tools',
packages=find_packages(exclude=['test*']),
install_requires=[
'botocore',
'boto3',
'importlib-metadata ~= 1.0 ; python_version < "3.8"'])