forked from Netflix/bless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 815 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
34
35
36
import os
from setuptools import setup, find_packages
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
about = {}
with open(os.path.join(ROOT, "bless", "__about__.py")) as f:
exec (f.read(), about)
setup(
name=about["__title__"],
version=about["__version__"],
author=about["__author__"],
author_email=about["__email__"],
url=about["__uri__"],
description=about["__summary__"],
license=about["__license__"],
packages=find_packages(exclude=["test*"]),
install_requires=[
'boto3',
'cryptography',
'ipaddress',
'marshmallow',
'kmsauth'
],
extras_require={
'tests': [
'coverage',
'flake8',
'pyflakes',
'pytest',
'pytest-mock'
]
}
)