-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
85 lines (79 loc) · 1.91 KB
/
setup.py
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
from setuptools import find_packages, setup
extras_test = [
"hypothesis",
"ruff",
"pyproj",
"pytest",
"pytest-cov",
"sphinx",
"pytest-asyncio",
"tox",
"build",
"vcrpy",
]
extras_evm = [
"eth_keys==0.5.*",
"eth_utils==4.1.*",
"eth_account==0.13.*",
]
extras_utxo = [
"sqlalchemy",
"aiosqlite",
"aiomysql",
"greenlet",
"cryptography",
"bitcoinlib==0.6.*",
]
setup(
name="aiotx",
keywords=[
"cryptocurrency",
"blockchain",
"bitcoin",
"ethereum",
"asyncio",
"aiohttp",
"json-rpc",
"payment",
"wallet",
"transaction",
],
use_scm_version=True,
description="An asynchronous library for interacting with various cryptocurrencies and blockchains",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=("tests", "scripts", "examples", "docs")),
package_data={
"aiotx": ["py.typed"],
"aiotx.utils": ["*.json"],
},
setup_requires=[
"setuptools_scm",
],
install_requires=[
"aiohttp",
"setuptools",
"pynacl>=1.4.0",
"tronpy",
],
extras_require={
"test": extras_test,
"utxo": extras_utxo,
"evm": extras_evm,
},
url="https://github.com/Grommash9/aiotx",
project_urls={
"Documentation": "https://grommash9.github.io/aiotx/",
"Source": "https://github.com/Grommash9/aiotx",
},
author="Oleksandr Prudnikov",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)