move secp256k1 extension module to proto.secp256k1

This commit is contained in:
The MMGen Project 2022-10-05 19:22:42 +00:00
commit d646099a37
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
4 changed files with 5 additions and 5 deletions

View file

@ -46,7 +46,7 @@ class my_build_ext(build_ext):
setup(
cmdclass = { 'build_ext': my_build_ext },
ext_modules = [Extension(
name = 'mmgen.secp256k1',
name = 'mmgen.proto.secp256k1.secp256k1',
sources = ['extmod/secp256k1mod.c'],
libraries = ([],['gmp'])[have_msys2],
extra_objects = [os.path.join(ext_path,'.libs/libsecp256k1.a')],