Skip to content

Commit

Permalink
build: Added jutils as a dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanWelsman committed Mar 2, 2023
1 parent ae1ec47 commit eda3d5f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
long_description = fh.read()

# modular-json package data
py_modules = ["load", "save"]
py_modules = ["encoding", "loading", "saving"]

# Run setup function
setup(
name='modular-json',
name='openjson',
version=version,
description='A modular approach to handling JSON.',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jordan Welsman',
author_email='[email protected]',
url='https://pypi.org/project/modular-json/',
download_url='https://github.com/JordanWelsman/modular-json/tags',
url='https://pypi.org/project/openjson/',
download_url='https://github.com/JordanWelsman/openjson/tags',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
Expand All @@ -44,8 +44,11 @@
"Programming Language :: Python :: 3.12"
],
package_data = {
'modular-json': py_modules
'openjson': py_modules
},
python_requires=python_version,
install_requires = [
"jutl"
],
keywords='python, json, modular, parsing, interpreting, exporting, importing'
)

0 comments on commit eda3d5f

Please sign in to comment.