-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
63 lines (57 loc) · 1.99 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
58
59
60
61
62
63
# -*- coding: UTF-8 -*-
"""Beschreibung
##############################################################################
#
# Copyright (c) 2020-2023 Verbundzentrale des GBV.
# All Rights Reserved.
#
##############################################################################
"""
# Imports
from setuptools import setup, find_namespace_packages
from pathlib import Path
__author__ = """Marc-J. Tegethoff <[email protected]>"""
__docformat__ = "plaintext"
def gc(fname):
mod_directory = Path(__file__).parent
fpath = mod_directory / fname
return fpath.read_text()
setup(
name="vzg.jconv",
version=gc("VERSION.txt"),
author="Marc-J. Tegethoff",
author_email="[email protected]",
description="Python library to create JSON Data",
long_description=gc("README.md"),
long_description_content_type="text/markdown",
keywords="VZG Python JSON XML JAST",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3",
],
url="https://github.com/gbv/vzg.jconv",
project_urls={
"PyPI": "https://pypi.python.org/pypi/vzg.jconv",
"Source": "https://github.com/gbv/vzg.jconv",
"Tracker": "https://github.com/gbv/vzg.jconv/issues",
},
packages=find_namespace_packages("src"),
include_package_data=True,
license="GNU Affero General Public License v3",
package_dir={"": "src"},
namespace_packages=["vzg"],
install_requires=["jsonschema",
"lxml",
"setuptools",
"wheel",
"zope.interface"],
zip_safe=False,
python_requires=">=3.10",
entry_points={"console_scripts": [
"simple-conv = vzg.jconv.tools.simple_conv:run"]},
)