-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (22 loc) · 995 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
#!/usr/bin/env python
"""Setup CloudWanderer package."""
import re
from os import path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.rst"), encoding="utf-8") as f:
long_description = re.sub(r"..\s+doctest\s+::", ".. code-block ::", f.read())
setup(
version="0.29.2",
python_requires=">=3.6.0",
name="cloudwanderer",
packages=find_packages(include=["cloudwanderer", "cloudwanderer.*"]),
description="A Python package which wanders across your AWS account and records resources in multiple databases",
long_description=long_description,
long_description_content_type="text/x-rst",
author="Sam Martin",
author_email="[email protected]",
url="https://github.com/CloudWanderer-io/CloudWanderer",
install_requires=["boto3", "jmespath", 'typing_extensions; python_version < "3.8.0"', "gremlinpython"],
include_package_data=True,
)