forked from NebraLtd/hm-pyhelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 732 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
from setuptools import setup, find_packages
from os.path import join, dirname
setup(
name='hm_pyhelper',
version='0.13.51',
author="Nebra Ltd",
author_email="[email protected]",
description="Helium Python Helper",
long_description=open(join(dirname(__file__), 'README.md')).read(),
long_description_content_type="text/markdown",
url="https://github.com/NebraLtd/hm-pyhelper",
install_requires=[
'requests>=2.28.1',
'retry==0.9.2',
'base58==2.1.1',
'protobuf==4.21.12',
'packaging>=22.0'
],
project_urls={
"Bug Tracker": "https://github.com/NebraLtd/hm-pyhelper/issues",
},
packages=find_packages(),
include_package_data=True
)