Rename package folder, update build configs.
This commit is contained in:
parent
e37434f950
commit
8ca72a7a57
5 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,3 @@
|
||||||
[build_ext]
|
[build_ext]
|
||||||
libraries=sqlcipher
|
|
||||||
include_dirs=/usr/include
|
include_dirs=/usr/include
|
||||||
library_dirs=/usr/lib
|
library_dirs=/usr/lib
|
||||||
|
|
|
||||||
3
setup.py
3
setup.py
|
|
@ -43,6 +43,7 @@ class SystemLibSqliteBuilder(build_ext):
|
||||||
|
|
||||||
def build_extension(self, ext):
|
def build_extension(self, ext):
|
||||||
log.info(self.description)
|
log.info(self.description)
|
||||||
|
ext.libraries.append('sqlcipher')
|
||||||
build_ext.build_extension(self, ext)
|
build_ext.build_extension(self, ext)
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -149,7 +150,7 @@ def get_setup_args():
|
||||||
license="zlib/libpng",
|
license="zlib/libpng",
|
||||||
platforms="ALL",
|
platforms="ALL",
|
||||||
url="https://github.com/coleifer/sqlcipher3",
|
url="https://github.com/coleifer/sqlcipher3",
|
||||||
package_dir={PACKAGE_NAME: "lib"},
|
package_dir={PACKAGE_NAME: "sqlcipher3"},
|
||||||
packages=packages,
|
packages=packages,
|
||||||
ext_modules=[Extension(
|
ext_modules=[Extension(
|
||||||
name=PACKAGE_NAME + EXTENSION_MODULE_NAME,
|
name=PACKAGE_NAME + EXTENSION_MODULE_NAME,
|
||||||
|
|
|
||||||
BIN
sqlcipher3/_sqlite3.cpython-36m-x86_64-linux-gnu.so
Executable file
BIN
sqlcipher3/_sqlite3.cpython-36m-x86_64-linux-gnu.so
Executable file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue