-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 812 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
32
33
from __future__ import absolute_import, division, print_function
from setuptools import setup, find_packages
import os
base_dir = os.path.dirname(__file__)
__title__ = "nimda"
__version__ = "0.1.0"
__summary__ = "Admin task helper"
__author__ = "Kay Hau"
__requirements__ = [
'boto3==1.13.2', # dynamodb
'jira==1.0.10', # jira
'pybitbucket==0.12.0', # bitbucket
'requests-oauthlib==0.8.0', # pybitbucket dependency
'six==1.14.0',
]
entry_points = {
'console_scripts': [
'offboard = nimda.offboard_main:main',
]
}
setup(
name=__title__,
version=__version__,
description=__summary__,
packages=find_packages(exclude=['tests']),
author=__author__,
zip_safe=False,
install_requires=__requirements__,
entry_points=entry_points,
)