Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions crypto/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# StarkWare Crypto

**A cryptographic library for the Stark Exchange**
6 changes: 6 additions & 0 deletions crypto/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

from setuptools import find_packages, setup

# Reads the contents of your README file.
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='starkware_crypto',
version='0.1',
Expand All @@ -15,6 +20,7 @@
'sympy==1.6',
'ecdsa==0.16.0',
],
long_description=long_description,
package_data={
'': ['signature/pedersen_params.json']
},
Expand Down