-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate from setup.py to pyproject.html.
- Loading branch information
Showing
6 changed files
with
47 additions
and
50 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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
recursive-include mpyc *.py | ||
recursive-exclude mpyc *.md | ||
include LICENSE | ||
include README.md |
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 |
---|---|---|
|
@@ -30,7 +30,6 @@ | |
""" | ||
|
||
__version__ = '0.10.1' | ||
__license__ = 'MIT License' | ||
|
||
import os | ||
import sys | ||
|
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,45 @@ | ||
[build-system] | ||
requires = ['setuptools>=62'] | ||
build-backend = 'setuptools.build_meta' | ||
|
||
[tool.setuptools] | ||
packages = ['mpyc'] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = 'mpyc.__version__'} | ||
|
||
[project] | ||
name = 'mpyc' | ||
dynamic = ['version'] | ||
authors = [{name = 'Berry Schoenmakers', email = '[email protected]'}] | ||
description = 'MPyC for Multiparty Computation in Python' | ||
readme = 'README.md' | ||
keywords=['crypto', 'cryptography', 'multiparty computation', 'MPC', | ||
'secret sharing', 'Shamir threshold scheme', | ||
'pseudorandom secret sharing', 'PRSS'] | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
'Framework :: AsyncIO', | ||
'Framework :: Jupyter', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Information Technology', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Topic :: Security :: Cryptography', | ||
'Topic :: Software Development :: Libraries :: Application Frameworks', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Topic :: System :: Distributed Computing' | ||
] | ||
license = {text = 'MIT License'} | ||
requires-python = '>=3.9' | ||
|
||
[project.urls] | ||
documentation = 'https://mpyc.readthedocs.io' | ||
discussions = 'https://github.com/lschoe/mpyc/discussions' | ||
'release notes' = 'https://github.com/lschoe/mpyc/releases' | ||
homepage = 'https://www.win.tue.nl/~berry/mpyc/' | ||
repository = 'https://github.com/lschoe/mpyc' |