mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
Refactored the majority of affected modules. Added optimized version of the reference implementation of ed25519.
11 lines
127 B
Python
11 lines
127 B
Python
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name="ed25519",
|
|
version="1.0",
|
|
|
|
py_modules="ed25519",
|
|
|
|
zip_safe=False,
|
|
)
|