-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
89 lines (86 loc) · 2.55 KB
/
Copy pathsetup.py
File metadata and controls
89 lines (86 loc) · 2.55 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
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_packages, setup
here = Path(__file__).parent.absolute()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="tpluspy",
version="0.2.2",
description="""tpluspy: Client utilities for interacting with tplus""",
long_description=long_description,
long_description_content_type="text/markdown",
author="TPlus Labs",
author_email="admin@tlus.cx",
url="https://github.com/tpluslabs/tpluspy",
include_package_data=True,
install_requires=[
"click>=8.1",
"cryptography>=44.0.1",
"eth-pydantic-types>=0.2.6,<0.3",
"eth-utils>=5.1.0,<6",
"httpx>=0.20",
"pycryptodome>=3.17.1",
"pydantic>=2.10.4,<3",
"websockets>=13.1,<14",
],
entry_points={
"console_scripts": [
"tplus=tplus._cli:cli",
],
},
python_requires=">=3.10,<4",
extras_require={
"test": [
"pytest>=8.0",
"pytest-timeout>=2.2.0,<3",
"pytest-mock",
"pytest-asyncio",
"anyio>=4",
"pytest-anyio>=0.0.0",
"trio>=0.24",
],
"lint": [
"ruff>=0.11.7",
"mypy>=1.18.2,<2",
],
"release": [
"setuptools>=75.6.0",
"wheel",
"twine",
],
"evm": [
"ape-tokens",
"click",
"eip712>=0.3.1",
"eth-ape>=0.8.49,<0.9",
"hexbytes>=1.3.1,<2",
],
"docs": [
"Sphinx>=7.0,<9",
"myst-parser>=2.0,<5",
"sphinx-rtd-theme>=2.0,<4",
"sphinx-autobuild>=2024.2.4",
"sphinx-click>=6.0,<7",
"linkify-it-py>=2.0,<3",
],
},
py_modules=["tpluspy"],
license="Apache-2.0",
zip_safe=False,
keywords="ethereum",
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={"tpluspy": ["py.typed", "evm/manifests/*"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)