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/lexactivator/libs *
105 changes: 105 additions & 0 deletions THIRD_PARTY_NOTICES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
Pygments
2.19.2
BSD License
https://pygments.org

certifi
2025.11.12
Mozilla Public License 2.0 (MPL 2.0)
https://github.com/certifi/python-certifi

charset-normalizer
3.4.4
MIT
https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md

docutils
0.22.3
BSD License; GNU General Public License (GPL); Public Domain
https://docutils.sourceforge.io

id
1.5.0
Apache Software License
https://pypi.org/project/id/

idna
3.11
BSD-3-Clause
https://github.com/kjd/idna

jaraco.classes
3.4.0
MIT License
https://github.com/jaraco/jaraco.classes

jaraco.context
6.0.1
MIT License
https://github.com/jaraco/jaraco.context

jaraco.functools
4.3.0
MIT
https://github.com/jaraco/jaraco.functools

keyring
25.7.0
MIT
https://github.com/jaraco/keyring

markdown-it-py
4.0.0
MIT License
https://github.com/executablebooks/markdown-it-py

mdurl
0.1.2
MIT License
https://github.com/executablebooks/mdurl

more-itertools
10.8.0
MIT
https://github.com/more-itertools/more-itertools

nh3
0.3.2
MIT
UNKNOWN

readme_renderer
44.0
Apache Software License
UNKNOWN

requests
2.32.5
Apache Software License
https://requests.readthedocs.io

requests-toolbelt
1.0.0
Apache Software License
https://toolbelt.readthedocs.io/

rfc3986
2.0.0
Apache Software License
http://rfc3986.readthedocs.io

rich
14.2.0
MIT License
https://github.com/Textualize/rich

twine
6.2.0
Apache-2.0
https://twine.readthedocs.io/

urllib3
2.5.0
MIT
https://github.com/urllib3/urllib3/blob/main/CHANGES.rst

4 changes: 3 additions & 1 deletion pre-publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ def main():
FileInfo('libs/clang/x86_64/libLexActivator.dylib',
base_path + '/macos/x86_64/libLexActivator.dylib'),
FileInfo('libs/clang/arm64/libLexActivator.dylib',
base_path + '/macos/arm64/libLexActivator.dylib')
base_path + '/macos/arm64/libLexActivator.dylib'),
FileInfo('THIRD-PARTY-NOTICES.txt',
base_path + '/THIRD-PARTY-NOTICES.txt')
]
url = '/LexActivator-Mac.zip'
download(base_url + lexactivator_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': ['lexactivator/libs/win32/**/*.dll', 'lexactivator/libs/linux/**/**/*.so', 'lexactivator/libs/macos/**/*.dylib']},
keywords='cryptlex lexactivator 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,
)