forked from satoshi-anonymoto/whatsminer-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 970 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 970 Bytes
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
from setuptools import setup, find_packages
setup(
name = 'pywhatsminer',
version = '0.2.2',
license='MIT',
description = 'Unofficial Python based Api-Client (Wrapper) for MicroBT Whatsminer ASIC`s',
long_description="See full README at https://github.com/DAAMCS/PyWhatsminer",
author = 'DAAMCS',
author_email = 'me@daamcs.ru',
url = 'https://github.com/DAAMCS/PyWhatsminer',
download_url = 'https://github.com/DAAMCS/PyWhatsminer',
keywords = ['whatsminer', 'microbt', 'api', 'btc', 'asic'],
install_requires=[
'passlib',
'pycryptodome',
'dataclasses-json',
'Deprecated',
'networkscan'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
packages=find_packages(),
include_package_data=True,
)