Skip to content

Commit

Permalink
build: Created setup script.
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanWelsman committed Mar 1, 2023
1 parent 5bb5503 commit 9379665
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Module imports
from setuptools import setup

# Arguments
version = "0.0.0" # update __init__.py
python_version = ">=3.10"

# Long description from README.md
with open("README.md", "r") as fh:
long_description = fh.read()

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

# Run setup function
setup(
name='modular-json',
version=version,
description='A modular approach to parsing JSON.',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jordan Welsman',
author_email='jordan.welsman@outlook.com',
url='https://pypi.org/project/modular-json/',
download_url='https://github.com/JordanWelsman/modular-json/tags',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: Software Development :: Interpreters',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
],
package_data = {
'modular-json': py_modules
},
python_requires=python_version,

keywords='python, json, modular, parsing, interpreting, exporting, importing'
)

0 comments on commit 9379665

Please sign in to comment.