-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Added jutils as a dependency.
- Loading branch information
1 parent
ae1ec47
commit eda3d5f
Showing
1 changed file
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|
@@ -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' | ||
) |