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.
- {t_encrypt-0.0.1.dev2/t_encrypt.egg-info → t_encrypt-0.0.2.dev0}/PKG-INFO +1 -1
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0}/setup_t_encrypt.py +8 -1
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0/t_encrypt.egg-info}/PKG-INFO +1 -1
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0}/MANIFEST.in +0 -0
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0}/setup.cfg +0 -0
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0}/setup.py +0 -0
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0}/t_encrypt/__init__.py +0 -0
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0}/t_encrypt/core.py +0 -0
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0}/t_encrypt/exceptions.py +0 -0
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0}/t_encrypt.egg-info/SOURCES.txt +0 -0
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0}/t_encrypt.egg-info/dependency_links.txt +0 -0
- {t_encrypt-0.0.1.dev2 → t_encrypt-0.0.2.dev0}/t_encrypt.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
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',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|