-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
108 lines (103 loc) · 3.1 KB
/
setup.py
File metadata and controls
108 lines (103 loc) · 3.1 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
"""
Setup script for libcrypto package.
"""
from setuptools import setup, find_packages
import os
def get_long_description():
"""Get the long description from README.md."""
readme_path = os.path.join(os.path.dirname(__file__), "README.md")
if os.path.exists(readme_path):
with open(readme_path, encoding="utf-8") as f:
return f.read()
return ""
setup(
name="libcrypto",
version="1.5.0",
description="Comprehensive cryptocurrency wallet library with BIP39/BIP32 support using embedded cryptographic primitives",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Mmdrza",
author_email="pymmdrza@gmail.com",
url="https://github.com/pymmdrza/libcrypto",
project_urls={
"Homepage": "https://github.com/pymmdrza/libcrypto",
"Documentation": "https://libcrypto.readthedocs.io",
"Repository": "https://github.com/pymmdrza/libcrypto.git",
"Issues": "https://github.com/pymmdrza/libcrypto/issues",
"PyPI": "https://pypi.org/project/libcrypto/",
},
license="MIT",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
package_data={
"libcrypto.cryptod": ["**/*.py", "**/*.pyi", "**/*.so", "**/*.pyd", "**/*.dll"],
},
python_requires=">=3.8",
install_requires=[
"rich>=14.0.0",
"typer>=0.9.0",
"wheel>=0.45.1",
"setuptools>=80.9.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"isort>=5.10.0",
"mypy>=1.0.0",
],
"test": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business :: Financial",
"Topic :: System :: Systems Administration :: Authentication/Directory",
"Typing :: Typed",
],
keywords=[
"cryptocurrency",
"bitcoin",
"ethereum",
"wallet",
"bip39",
"bip32",
"bip44",
"mnemonic",
"private-key",
"public-key",
"address",
"hdwallet",
"crypto",
"blockchain",
"litecoin",
"dash",
"dogecoin",
"bitcoin-cash",
"secp256k1",
"cryptography",
"pure-python",
],
zip_safe=False,
entry_points={
"console_scripts": [
"libcrypto=libcrypto.cli:app",
],
},
)