-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
36 lines (34 loc) · 945 Bytes
/
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
import setuptools
import os
# read the contents of your README file
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, "README.md")) as f:
long_description = f.read()
setuptools.setup(
name="py-vsys",
version="0.2.1",
description="The official Python SDK for VSYS APIs",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"SDK",
"api wrapper",
"blockchain",
"vsystems",
"smart contract",
"supernode",
"defi",
],
url="https://github.com/virtualeconomy/py-vsys",
author="V SYSTEMS",
author_email="[email protected]",
license="MIT",
packages=setuptools.find_packages(),
install_requires=[
"aiohttp~=3.8.1",
"python-axolotl-curve25519~=0.4.1.post2",
"base58~=2.1.1",
"loguru~=0.5.3",
],
python_requires=">=3.7",
)