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
1 change: 1 addition & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright © Cryptlex LLP. All rights reserved. Use is subject to Cryptlex's [Terms of Service](https://docs.cryptlex.com/legal/terms-of-service).
21 changes: 0 additions & 21 deletions LICENSE.txt

This file was deleted.

3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
include README.md

# Include the license file
include LICENSE.txt
include LICENSE.md
include THIRD_PARTY_NOTICES.txt

# Include the data files
recursive-include cryptlex/lexfloatclient/libs *
520 changes: 520 additions & 0 deletions THIRD_PARTY_NOTICES.txt

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions pre-publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,12 @@ def main():

files = [
FileInfo('libs/clang/x86_64/libLexFloatClient.dylib',
base_path + '/macos/x86_64/libLexFloatClient.dylib'),
base_path + '/macos/x86_64/libLexFloatClient.dylib'),
FileInfo('libs/clang/arm64/libLexFloatClient.dylib',
base_path + '/macos/arm64/libLexFloatClient.dylib')
]
base_path + '/macos/arm64/libLexFloatClient.dylib'),
FileInfo('THIRD-PARTY-NOTICES.txt',
base_path + '/THIRD-PARTY-NOTICES.txt')
]
url = '/LexFloatClient-Mac.zip'
download(base_url + lexfloatclient_libs_version + url, files)

Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[metadata]
# This includes the license file(s) in the wheel.
# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
license_files = LICENSE.txt
license_files =
LICENSE.md
THIRD_PARTY_NOTICES.txt

[bdist_wheel]
# This flag says to generate wheels that support both Python 2 and Python
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@
packages=setuptools.find_packages(),
package_data={'cryptlex': ['lexfloatclient/libs/win32/**/*.dll', 'lexfloatclient/libs/linux/**/**/*.so', 'lexfloatclient/libs/macos/**/*.dylib']},
keywords='cryptlex lexfloatclient licensing',
license='Proprietary',
classifiers=[
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 3',
"License :: OSI Approved :: MIT License",
"License :: Other/Proprietary License",
'Intended Audience :: Developers',
"Operating System :: OS Independent",
]
],
include_package_data=True,
)