-
-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed the stuff to use setuptools better. Low-value stuff like insert…
…ing versions into README.md and adding a file with metainfo has been removed. If one needs a version info or content of README, he should use pkg_resources. Releases are the versions built from git tags. Development releases have git tags with "-dev" :) Also added some goodies, like .editorconfig and ignores.
- Loading branch information
Showing
9 changed files
with
68 additions
and
333 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
root = true | ||
|
||
[*.py] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 4 | ||
insert_final_newline = true | ||
end_of_line = lf |
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 |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
.cache/ | ||
*.egg-info/ | ||
*.pyc | ||
/dist | ||
/build |
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
Empty file.
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
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[build-system] | ||
requires = ["setuptools>=44", "wheel", "setuptools_scm[toml]>=3.4.3"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] |
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 |
---|---|---|
@@ -1,4 +1,48 @@ | ||
[egg_info] | ||
tag_build = .dev0 | ||
#tag_svn_revision = yes | ||
#tag_date = yes | ||
[metadata] | ||
name = dill | ||
author = Mike McKerns | ||
maintainer = Mike McKerns | ||
license = BSD-3-Clause | ||
license_file = LICENSE | ||
description = serialize all of python | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://pypi.org/project/dill | ||
homepage = https://github.com/uqfoundation/dill | ||
download_url = https://github.com/uqfoundation/dill | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: BSD License | ||
Programming Language :: Python :: 2 | ||
Programming Language :: Python :: 2.5 | ||
Programming Language :: Python :: 2.6 | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.1 | ||
Programming Language :: Python :: 3.2 | ||
Programming Language :: Python :: 3.3 | ||
Programming Language :: Python :: 3.4 | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Topic :: Scientific/Engineering | ||
Topic :: Software Development | ||
platforms = Linux, Windows, Mac | ||
|
||
[options] | ||
packages = dill, dill.tools | ||
zip_safe = False | ||
python_requires = >=2.5, !=3.0.* | ||
setup_requires = setuptools>=44; wheel; setuptools_scm[toml]>=3.4.3 | ||
|
||
[options.extras_require] | ||
readline = pyreadline>=1.7.1 | ||
graph = objgraph>=1.7.2 | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
undill = dill.tools.undill:undill | ||
get_objgraph = dill.tools.get_objgraph:get_objgraph |
Oops, something went wrong.