Skip to content

Commit dab530d

Browse files
committed
use setup.py until package released
1 parent bab742a commit dab530d

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

setup.py

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name="async-substrate-interface",
5+
version="1.0.0",
6+
description="Asyncio library for interacting with substrate.",
7+
long_description=open("README.md").read(),
8+
long_description_content_type="text/markdown",
9+
author="Opentensor Foundation",
10+
author_email="benhimes@opentensor.dev",
11+
url="https://github.com/opentensor/async-substrate-interface",
12+
packages=find_packages(),
13+
install_requires=[
14+
"asyncstdlib~=3.13.0",
15+
"bittensor-wallet>=2.1.3",
16+
"bt-decode==0.4.0",
17+
"scalecodec==1.2.11",
18+
"websockets>=14.1",
19+
"xxhash",
20+
],
21+
python_requires=">=3.9,<3.13",
22+
classifiers=[
23+
"Development Status :: 5 - Production/Stable",
24+
"Intended Audience :: Developers",
25+
"License :: OSI Approved :: MIT License",
26+
"Programming Language :: Python :: 3",
27+
"Programming Language :: Python :: 3.9",
28+
"Programming Language :: Python :: 3.10",
29+
"Programming Language :: Python :: 3.11",
30+
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3 :: Only",
32+
],
33+
)

0 commit comments

Comments
 (0)