t-encrypt 0.0.1.dev2__tar.gz → 0.0.2.dev0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: t-encrypt
3
- Version: 0.0.1.dev2
3
+ Version: 0.0.2.dev0
4
4
  Summary: Python bindings for SKALE Threshold Encryption
5
5
  Author: SKALE Network
6
6
  Classifier: Programming Language :: Python :: 3
@@ -5,6 +5,7 @@ import os
5
5
  import shutil
6
6
  from setuptools import setup, find_packages
7
7
  from setuptools.command.build_py import build_py
8
+ from setuptools.dist import Distribution
8
9
 
9
10
  # Configuration
10
11
  PACKAGE_NAME = 't_encrypt'
@@ -39,9 +40,14 @@ class CustomBuildPy(build_py):
39
40
 
40
41
  super().run()
41
42
 
43
+
44
+ class BinaryDistribution(Distribution):
45
+ def has_ext_modules(self):
46
+ return True
47
+
42
48
  setup(
43
49
  name='t-encrypt',
44
- version='0.0.1.dev2',
50
+ version='0.0.2.dev0',
45
51
  description='Python bindings for SKALE Threshold Encryption',
46
52
  author='SKALE Network',
47
53
  packages=find_packages(),
@@ -52,6 +58,7 @@ setup(
52
58
  cmdclass={
53
59
  'build_py': CustomBuildPy,
54
60
  },
61
+ distclass=BinaryDistribution,
55
62
  classifiers=[
56
63
  'Programming Language :: Python :: 3',
57
64
  'Operating System :: POSIX :: Linux',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: t-encrypt
3
- Version: 0.0.1.dev2
3
+ Version: 0.0.2.dev0
4
4
  Summary: Python bindings for SKALE Threshold Encryption
5
5
  Author: SKALE Network
6
6
  Classifier: Programming Language :: Python :: 3
File without changes
File without changes