forked from AcademySoftwareFoundation/aswf-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.8 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
44
45
# Copyright (c) Contributors to the aswf-docker Project. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
from setuptools import setup, find_packages
with open("python/README.md", "r") as fh:
long_description = fh.read()
setup(
name="aswfdocker",
version="0.4.0",
author="Aloys Baillet",
author_email="[email protected]",
description="ASWF Docker Utilities",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AcademySoftwareFoundation/aswf-docker",
packages=find_packages(where="python"),
package_dir={"": "python"},
package_data={"aswfdocker": ["data/*.yaml", "data/*.jinja2"]},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=[
"certifi==2020.4.5.1",
"chardet==3.0.4",
"click==7.1.2",
"deprecated==1.2.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"idna==2.9; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"importlib-resources==3.3.0",
"jinja2==2.11.2",
"markupsafe==1.1.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"pygithub==1.51",
"pyjwt==1.7.1",
"pyyaml==5.3.1",
"requests==2.23.0",
"urllib3==1.25.9; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'",
"wrapt==1.12.1",
"zipp==3.4.0; python_version < '3.8' and python_version < '3.8'",
],
python_requires=">=3.6",
entry_points={"console_scripts": ["aswfdocker=aswfdocker.cli.aswfdocker:cli",],},
)