-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
58 additions
and
75 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
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,12 +1,50 @@ | ||
[build-system] | ||
# Must be kept in sync with `setup_requirements` in `setup.py` | ||
# Must be kept in sync with `dependencies` below | ||
requires = [ | ||
"setuptools>=40.8.0", | ||
"setuptools>=61.0.0", | ||
"wheel", | ||
"cffi>=1.4.1; platform_python_implementation != 'PyPy'", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
dynamic = ["readme"] | ||
|
||
name = "PyNaCl" | ||
# Must be kept in sync with `src/nacl/__init__.py` | ||
version = "1.6.0.dev1" | ||
authors = [ | ||
{name = "The PyNaCl developers", email = "[email protected]"} | ||
] | ||
description = "Python binding to the Networking and Cryptography (NaCl) library" | ||
license = {text = "Apache-2.0"} | ||
classifiers = [ | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
requires-python = ">=3.6" | ||
dependencies = [ | ||
"cffi>=1.4.1; platform_python_implementation != 'PyPy'" | ||
] | ||
|
||
[project.optional-dependencies] | ||
tests = [ | ||
"pytest>=3.2.1,!=3.3.0", | ||
"hypothesis>=3.27.0", | ||
] | ||
docs = [ | ||
"sphinx<7", | ||
"sphinx_rtd_theme" | ||
] | ||
|
||
[tool.black] | ||
line-length = 79 | ||
target-version = ["py36"] | ||
|
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 |
---|---|---|
|
@@ -14,26 +14,12 @@ | |
|
||
|
||
__all__ = [ | ||
"__title__", | ||
"__summary__", | ||
"__uri__", | ||
"__version__", | ||
"__author__", | ||
"__email__", | ||
"__license__", | ||
"__copyright__", | ||
] | ||
|
||
__title__ = "PyNaCl" | ||
__summary__ = ( | ||
"Python binding to the Networking and Cryptography (NaCl) library" | ||
) | ||
__uri__ = "https://github.com/pyca/pynacl/" | ||
|
||
# Must be kept in sync with `pyproject.toml` | ||
__version__ = "1.6.0.dev1" | ||
|
||
__author__ = "The PyNaCl developers" | ||
__email__ = "[email protected]" | ||
|
||
__license__ = "Apache License 2.0" | ||
__copyright__ = "Copyright 2013-2018 {}".format(__author__) |