-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 1.1 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
import os
import setuptools
import yaml
readme_file = os.path.join(os.path.dirname(os.path.realpath(__file__)), "README.md")
with open(readme_file, "r") as readme_fh:
readme = readme_fh.read()
info_file = os.path.join(os.path.dirname(os.path.realpath(__file__)), "conf/info.yaml")
with open(info_file, "r") as info_fh:
info = yaml.load(info_fh, Loader=yaml.FullLoader)
setuptools.setup(
name="pyaemaws",
version=info["version"],
author="Shine Solutions",
author_email="[email protected]",
keywords=["Adobe Experience Manager (AEM) API"],
description="AEM on AWS API Python client",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/shinesolutions/pyaemaws",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
"boto3==1.10.41",
"coverage==5.0.3",
"python-dateutil==2.8.0"
]
)