- Notifications
You must be signed in to change notification settings - Fork 45
Moved the metadata into setup.cfg.#47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| *.pyc | ||
| /jsonpointer/version.py | ||
| *.py[co] | ||
| build | ||
| .coverage | ||
| MANIFEST | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| [build-system] | ||
| requires = ["setuptools>=44", "wheel", "setuptools_scm[toml]>=3.4.3", "read_version[toml] >= 0.3.0"] | ||
| build-backend = "setuptools.build_meta" | ||
| [tool.setuptools_scm] | ||
| write_to = "jsonpointer/version.py" | ||
| write_to_template = "__version__ = '{version}'\n" | ||
| [tool.read_version] | ||
| #version = "jsonpointer.__init__:__version__" | ||
| author = "jsonpointer.__init__:__author__" | ||
| author_email = "jsonpointer.__init__:__email__" | ||
| url = "jsonpointer.__init__:__website__" | ||
| license = "jsonpointer.__init__:__license__" |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,3 +1,7 @@ | ||||
| wheel | ||||
| twine>=1.11.0 | ||||
| setuptools>=38.6.0 | ||||
| build | ||||
| setuptools | ||||
CopilotAI | ||||
| setuptools |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,35 @@ | ||
| [metadata] | ||
| name = jsonpointer | ||
| description = Identify specific nodes in a JSON document (RFC 6901) | ||
| long_description = file: README.md | ||
| long_description_content_type = text/markdown | ||
| classifiers = | ||
| Development Status :: 5 - Production/Stable | ||
| Environment :: Console | ||
| Intended Audience :: Developers | ||
| License :: OSI Approved :: BSD License | ||
| Operating System :: OS Independent | ||
| Programming Language :: Python | ||
| Programming Language :: Python :: 2 | ||
| Programming Language :: Python :: 2.7 | ||
| Programming Language :: Python :: 3 | ||
| Programming Language :: Python :: 3.5 | ||
| Programming Language :: Python :: 3.6 | ||
| Programming Language :: Python :: 3.7 | ||
| Programming Language :: Python :: 3.8 | ||
| Programming Language :: Python :: 3.9 | ||
| Programming Language :: Python :: Implementation :: CPython | ||
| Programming Language :: Python :: Implementation :: PyPy | ||
| Topic :: Software Development :: Libraries | ||
| Topic :: Utilities | ||
| [options] | ||
| packages = jsonpointer | ||
| python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* | ||
| [bdist_wheel] | ||
| universal = 1 | ||
| [options.entry_points] | ||
| console_scripts = | ||
| jsonpointer = jsonpointer.__main__:main |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this pull request has been sitting for a while, but any chance you can elaborate on why that file would be in
.gitignore? For me it would seem logical to have it tracked.