-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (50 loc) · 1.73 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
# Module imports
from setuptools import setup
# Arguments
version = "0.1.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 = ["encoding", "loading", "saving"]
# Run setup function
setup(
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/openjson/',
download_url='https://github.com/JordanWelsman/openjson/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 = {
'openjson': py_modules
},
python_requires=python_version,
install_requires = [
"jutl"
],
keywords='python, json, modular, parsing, interpreting, exporting, importing'
)