-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (36 loc) · 1.12 KB
/
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
37
38
39
40
41
42
43
import os
from setuptools import setup, find_packages
src_dir = os.path.dirname(__file__)
install_requires = [
"pytest",
"troposphere>=2.3.2",
"schematics>=2.1.1",
"stacker @ https://github.com/remind101/stacker-internal/archive/main.zip",
]
tests_require = [
"cfn_flip (==1.0.2)",
"mock (==2.0.0)",
"schematics (==2.2.1)",
"stacker (>=1.4.0)",
]
def read(filename):
full_path = os.path.join(src_dir, filename)
with open(full_path) as fd:
return fd.read()
if __name__ == "__main__":
setup(
name="stacker_blueprints",
version="1.0.8",
author="Michael Barrett",
author_email="[email protected]",
license="New BSD license",
url="https://github.com/remind101/stacker_blueprints",
description="Default blueprints for stacker",
long_description=read("README.rst"),
packages=find_packages(),
install_requires=install_requires,
# dependency_links=[
# 'https://github.com/Lowercases/stacker/archive/refs/tags/python3.tar.gz#egg=stacker-python3',
# ],
requires=tests_require,
)