forked from prividentity/cryptonets-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
85 lines (79 loc) · 3.71 KB
/
setup.py
File metadata and controls
85 lines (79 loc) · 3.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# -*- coding: utf-8 -*-
"""
PRIVATE IDENTITY LLC - PROPRIETARY AND CONFIDENTIAL (c) COPYRIGHT 2018 - 2025 PRIVATE IDENTITY LLC
All Rights Reserved.
NOTICE: All information contained herein is, and remains the
property of PRIVATE IDENTITY LLC and its suppliers, if any. The intellectual and technical concepts contained
herein are proprietary to PRIVATE IDENTITY LLC and its suppliers and may be covered by U.S. and Foreign Patents,
patents in process, and are protected by trade secret or copyright law. Dissemination of this information or
reproduction of this material is strictly forbidden unless prior written permission is obtained from PRIVATE
IDENTITY LLC. Any software that is made available to download from Private Identity LLC ("Software") is the
copyrighted work of Private Identity LLC and/or its suppliers. Use of the Software is governed by the terms of the
end user license agreement, if any, which accompanies or is included with the Software ("License Agreement"). An
end user must not install any Software that is accompanied by or includes a License Agreement, unless he or she
first agrees to the License Agreement terms. RESTRICTED RIGHTS LEGEND. Any Software which is downloaded from
PRIVATE IDENTITY LLC for or on behalf of the United States of America, its agencies and/or instrumentalities ("U.S.
Government"), is provided with Restricted Rights. Use, duplication, or disclosure by the U.S. Government is subject
to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software
clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of the Commercial Computer Software - Restricted
Rights at 48 CFR 52.227-19, as applicable.
Manufacturer is PRIVATE IDENTITY LLC , 13331 Signal Tree, Potomac, MD 20854 USA.
"""
import os
from setuptools import setup, find_packages
"""
Setup module for cryptonets python sdk.
Created on Feb 25th - 2025
@author: Private Identity
"""
NAME = "cryptonets_python_sdk"
DESCRIPTION = "Cryptonets SDK Library for Python"
AUTHOR = "Private Identity"
AUTHOR_EMAIL = "support@private.id"
URL = "https://privateid.com/"
VERSION = "1.3.10"
REQUIRES = ["numpy >= 1.21.0", "pillow >= 9.1.0","boto3","tqdm","exifread"]
LONG_DESCRIPTION = ""
if os.path.exists("./README.md"):
with open("README.md", encoding="utf-8") as fp:
LONG_DESCRIPTION = fp.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license="",
url=URL,
keywords=["privateid", "cryptonets", "face identification"],
packages=find_packages(where="src", exclude=["tests*"]),
include_package_data=True,
platforms="any",
install_requires=REQUIRES,
python_requires=">=3.6",
package_dir={"": "src"},
project_urls={
"Bug Reports": "https://github.com/prividentity/cryptonets-python-sdk/issues",
"Source": "https://github.com/prividentity/cryptonets-python-sdk",
"Documentation": "https://docs.private.id/cryptonets-python-sdk/index.html",
"Release Notes": "https://docs.private.id/cryptonets-python-sdk/changelog.html",
},
classifiers=[
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development",
],
py_modules=[NAME],
package_data={
"cryptonets_python_sdk": [
]
},
)