-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
127 lines (119 loc) · 5.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, Extension
import sys
import platform
import struct
import os
includes = []
libraries = []
library_dirs = []
extra_sources = []
CFLAGS = []
if sys.platform.startswith('linux'):
define_macros = [('HAVE_CLOCK_GETTIME', '1'),
('HAVE_LIBRT', '1'),
('HAVE_POSIX_MEMALIGN', '1'),
('HAVE_STRUCT_SYSINFO', '1'),
('HAVE_STRUCT_SYSINFO_MEM_UNIT', '1'),
('HAVE_STRUCT_SYSINFO_TOTALRAM', '1'),
('HAVE_SYSINFO', '1'),
('HAVE_SYS_SYSINFO_H', '1'),
('_FILE_OFFSET_BITS', '64')]
libraries = ['crypto', 'rt']
includes = ['/usr/local/include', '/usr/include']
CFLAGS.append('-O2')
elif sys.platform.startswith('win32'):
define_macros = [('inline', '__inline')]
extra_sources = ['scrypt-windows-stubs/gettimeofday.c']
if struct.calcsize('P') == 8:
if os.path.isdir('c:\OpenSSL-v111-Win64') and sys.version_info[0] >= 3 and sys.version_info[1] > 4:
openssl_dir = 'c:\OpenSSL-v111-Win64'
else:
openssl_dir = 'c:\OpenSSL-Win64'
library_dirs = [openssl_dir + '\lib']
includes = [openssl_dir + '\include', 'scrypt-windows-stubs/include']
else:
if os.path.isdir('c:\OpenSSL-v111-Win32'):
openssl_dir = 'c:\OpenSSL-v111-Win32'
else:
openssl_dir = 'c:\OpenSSL-Win32'
library_dirs = [openssl_dir + '\lib']
includes = [openssl_dir + '\include', 'scrypt-windows-stubs/include']
windows_link_legacy_openssl = os.environ.get(
"SCRYPT_WINDOWS_LINK_LEGACY_OPENSSL", None
)
if windows_link_legacy_openssl is None:
libraries = ['libcrypto_static']
else:
libraries = ['libeay32']
libraries += ["advapi32", "gdi32", "user32", "ws2_32"]
elif sys.platform.startswith('darwin') and platform.mac_ver()[0] < '10.6':
define_macros = [('HAVE_SYSCTL_HW_USERMEM', '1')]
# disable for travis
libraries = ['crypto']
elif sys.platform.startswith('darwin'):
define_macros = [('HAVE_POSIX_MEMALIGN', '1'),
('HAVE_SYSCTL_HW_USERMEM', '1')]
# disable for travis
libraries = ['crypto']
else:
define_macros = [('HAVE_POSIX_MEMALIGN', '1'),
('HAVE_SYSCTL_HW_USERMEM', '1')]
libraries = ['crypto']
scrypt_module = Extension(
'_scrypt',
sources=['src/scrypt.c',
'scrypt-1.2.1/lib/crypto/crypto_scrypt_smix_sse2.c',
'scrypt-1.2.1/lib/crypto/crypto_scrypt_smix.c',
'scrypt-1.2.1/lib/crypto/crypto_scrypt.c',
'scrypt-1.2.1/lib/scryptenc/scryptenc.c',
'scrypt-1.2.1/lib/scryptenc/scryptenc_cpuperf.c',
'scrypt-1.2.1/lib/util/memlimit.c',
'scrypt-1.2.1/libcperciva/alg/sha256.c',
'scrypt-1.2.1/libcperciva/crypto/crypto_aes_aesni.c',
'scrypt-1.2.1/libcperciva/crypto/crypto_aes.c',
'scrypt-1.2.1/libcperciva/crypto/crypto_aesctr.c',
'scrypt-1.2.1/libcperciva/crypto/crypto_entropy.c',
'scrypt-1.2.1/libcperciva/util/entropy.c',
'scrypt-1.2.1/libcperciva/util/insecure_memzero.c',
'scrypt-1.2.1/libcperciva/util/warnp.c',
'scrypt-1.2.1/libcperciva/util/humansize.c',
'scrypt-1.2.1/libcperciva/util/asprintf.c'] + extra_sources,
include_dirs=['scrypt-1.2.1',
'scrypt-1.2.1/lib',
'scrypt-1.2.1/lib/scryptenc',
'scrypt-1.2.1/lib/crypto',
'scrypt-1.2.1/lib/util',
'scrypt-1.2.1/libcperciva/cpusupport',
'scrypt-1.2.1/libcperciva/alg',
'scrypt-1.2.1/libcperciva/util',
'scrypt-1.2.1/libcperciva/crypto'] + includes,
define_macros=[('HAVE_CONFIG_H', None)] + define_macros,
extra_compile_args=CFLAGS,
library_dirs=library_dirs,
libraries=libraries)
setup(name='pyscryptfirebase',
version='0.0.2',
description='Python wrapper for the Firebase scrypt password hashing utility',
author='Matt Simpson',
author_email='[email protected]',
url='https://github.com/mcsimps2/py-scrypt-firebase/',
packages=['pyscryptfirebase'],
ext_modules=[scrypt_module],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries',
'Operating System :: OS Independent',
],
license='2-clause BSD',
long_description=open('README.md').read(),
long_description_content_type="text/markdown")