-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·53 lines (49 loc) · 1.36 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
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Package setup."""
import json
from setuptools import find_packages, setup
with open("README.md", mode="r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
with open("package.json", mode="r", encoding="utf-8") as package_file:
package_info = package_file.read()
package_info = json.loads(package_info)
setup(
name=package_info["name"],
version="{{VERSION_PLACEHOLDER}}",
author=package_info["author"],
author_email=package_info["email"],
url=package_info["url"],
description=package_info["description"],
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(
exclude=[
"tests",
"scripts",
".github",
]
),
install_requires=[
"pytest>=7.1",
"attrs>=22.1",
"certifi>=2022.9",
"charset-normalizer>=2.1",
"click>=8.1",
"idna>=3.4",
"iniconfig>=1.1",
"opensearch-py==2.6.0",
"packaging>=21.3",
"parameterized>=0.8.1",
"pluggy>=1.0",
"py>=1.11",
"pyparsing>=3.0",
"requests>=2.28",
"tomli>=2.0",
"urllib3>=1.26",
"requests-aws4auth>=1.1",
"deepdiff>=6.2",
],
python_requires=">=3.10",
include_package_data=True,
)