mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
9 lines
152 B
Python
9 lines
152 B
Python
|
|
from setuptools import setup
|
||
|
|
|
||
|
|
|
||
|
|
setup(
|
||
|
|
name="cryptography",
|
||
|
|
license="Apache Software License Verison 2.0",
|
||
|
|
install_requires=["cffi>=0.6"],
|
||
|
|
)
|