
7 changed files with 40 additions and 74 deletions
@ -1,50 +0,0 @@
|
||||
[metadata] |
||||
name = sporestack |
||||
version = 6.0.1 |
||||
description = SporeStack.com library and client. Launch servers with Monero or Bitcoin. |
||||
long_description = file: README.md |
||||
long_description_content_type = text/markdown |
||||
url = https://sporestack.com/ |
||||
author = SporeStack |
||||
author_email = admin@sporestack.com |
||||
license = Unlicense |
||||
license_file = LICENSE.txt |
||||
classifiers = |
||||
Programming Language :: Python :: 3 |
||||
Programming Language :: Python :: 3 :: Only |
||||
Programming Language :: Python :: 3.7 |
||||
Programming Language :: Python :: 3.8 |
||||
Programming Language :: Python :: 3.9 |
||||
Programming Language :: Python :: 3.10 |
||||
keywords = |
||||
bitcoin |
||||
bitcoincash |
||||
bitcoinsv |
||||
monero |
||||
servers |
||||
infrastructure |
||||
vps |
||||
virtual private server |
||||
|
||||
[options] |
||||
packages = find: |
||||
install_requires = |
||||
pydantic |
||||
requests[socks]>=2.22.0 |
||||
segno |
||||
typer |
||||
importlib-metadata;python_version<"3.8" |
||||
python_requires = >=3.7 |
||||
package_dir = =src |
||||
zip_safe = False |
||||
|
||||
[options.packages.find] |
||||
where = src |
||||
|
||||
[options.entry_points] |
||||
console_scripts = |
||||
sporestack = sporestack.cli:cli |
||||
|
||||
[options.package_data] |
||||
sporestack = |
||||
py.typed |
@ -1 +1,5 @@
|
||||
"""SporeStack API and CLI for launching servers with Bitcoin or Monero""" |
||||
|
||||
__all__ = ["api", "api_client", "exceptions"] |
||||
|
||||
__version__ = "6.0.2" |
||||
|
@ -1,10 +0,0 @@
|
||||
import sys |
||||
|
||||
if sys.version_info[:2] >= (3, 8): # pragma: nocover |
||||
from importlib.metadata import version as importlib_metadata_version |
||||
else: # pragma: nocover |
||||
# Python 3.7 doesn't have this. |
||||
from importlib_metadata import version as importlib_metadata_version |
||||
|
||||
|
||||
__version__ = importlib_metadata_version(__package__) |
Loading…
Reference in new issue