-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 876 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 876 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
29
#!/usr/bin/env python
from batchbeagle import __version__
from setuptools import setup, find_packages
# intro = open('docs/source/intro.rst').read()
setup(name="batchbeagle",
version=__version__,
description="AWS Batch related deployment tools",
author="Caltech IMSS ADS",
author_email="imss-ads-staff@caltech.edu",
url="https://github.com/caltechads/batchbeagle",
# long_description=intro,
keywords=['aws', 'batch'],
classifiers = [
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3"
],
packages=find_packages(),
include_package_data=True,
install_requires=[
"boto3 >= 1.4.4",
"click >= 6.7",
"PyYAML == 3.12"
],
entry_points={'console_scripts': [
'beagle = batchbeagle.dplycli:main'
]}
)