-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
57 lines (55 loc) · 2.07 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
54
55
56
57
"""Build this project."""
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="yamlpath",
description=(
"Command-line get/set/merge/validate/scan/convert/diff processors for"
+ " YAML/JSON/Compatible data using powerful, intuitive, command-line"
+ " friendly syntax"),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
],
url="https://github.com/wwkimball/yamlpath",
author="William W. Kimball, Jr., MBA, MSIS",
author_email="[email protected]",
license="ISC",
keywords="yaml eyaml json yaml-path diff merge",
packages=find_packages(exclude=["tests"]),
entry_points={
"console_scripts": [
"eyaml-rotate-keys = yamlpath.commands.eyaml_rotate_keys:main",
"yaml-get = yamlpath.commands.yaml_get:main",
"yaml-paths = yamlpath.commands.yaml_paths:main",
"yaml-set = yamlpath.commands.yaml_set:main",
"yaml-merge = yamlpath.commands.yaml_merge:main",
"yaml-validate = yamlpath.commands.yaml_validate:main",
"yaml-diff = yamlpath.commands.yaml_diff:main",
]
},
python_requires=">3.7.0",
install_requires=[
"ruamel.yaml>0.17.5,!=0.17.18,<=0.17.21",
"python-dateutil<=3"
],
tests_require=[
"pytest",
"pytest-cov",
"pytest-console-scripts",
],
include_package_data=True,
zip_safe=False
)