Skip to content
Snippets Groups Projects
Commit 8b915a86 authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

first release 0.19.1

parent a15d9bc2
No related branches found
No related tags found
No related merge requests found
include *.rst
include setup.py
include README.rst
include LICENSE.txt
include *.txt
include MANIFEST.in
# All source files
recursive-include steempy *
recursive-include steempybase *
recursive-include steempyapi *
# All documentation
recursive-include docs *
# recursive-include demo *
# Add build and testing tools
include tox.ini
recursive-include util *
# Exclude what we don't want to include
prune build
prune doc/build
prune */__pycache__
global-exclude *.py[cod] *.egg *.egg-info
global-exclude *~ *.bak *.swp
\ No newline at end of file
......@@ -16,6 +16,9 @@ steemi is an unofficial python 3 library for steem, which is created new from sc
.. image:: https://codecov.io/gh/holgern/steempy/branch/master/graph/badge.svg
:target: https://codecov.io/gh/holgern/steempy
.. image:: https://readthedocs.org/projects/steempy/badge/?version=latest
:target: http://steempy.readthedocs.org/en/latest/?badge=latest
Installation
============
......
[metadata]
description-file = README.md
description-file = README.rst
[aliases]
test=pytest
#!/usr/bin/env python3
import os
import sys
import subprocess
from setuptools import setup
# Work around mbcs bug in distutils.
......@@ -13,41 +16,56 @@ except LookupError:
VERSION = '0.19.1'
setup(
name='steempy',
version=VERSION,
description='Unofficial Python library for STEEM',
long_description=open('README.rst').read(),
download_url='https://github.com/holgern/steempy/tarball/' + VERSION,
author='Holger Nahrstaedt',
author_email='holger@nahrstaedt.de',
maintainer='Holger Nahrstaedt',
maintainer_email='holger@nahrstaedt.de',
url='http://www.github.com/holgern/pySteemi',
keywords=['steem', 'library', 'api', 'rpc'],
packages=[
"steempy",
"steempyapi",
"steempybase"
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial',
],
install_requires=[
"graphenelib>=0.5.9",
"websockets",
"appdirs",
"Events",
"scrypt",
"pycryptodomex", # for AES, installed through graphenelib already
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
)
def write_version_py(filename):
cnt = """
# THIS FILE IS GENERATED FROM stempy SETUP.PY
version = '%(version)s'
"""
with open(filename, 'w') as a:
a.write(cnt % {'version': VERSION})
if __name__ == '__main__':
# Rewrite the version file everytime
write_version_py('steempy/version.py')
write_version_py('steempybase/version.py')
write_version_py('steempyapi/version.py')
setup(
name='steempy',
version=VERSION,
description='Unofficial Python library for STEEM',
long_description=open('README.rst').read(),
download_url='https://github.com/holgern/steempy/tarball/' + VERSION,
author='Holger Nahrstaedt',
author_email='holger@nahrstaedt.de',
maintainer='Holger Nahrstaedt',
maintainer_email='holger@nahrstaedt.de',
url='http://www.github.com/holgern/steempy',
keywords=['steem', 'library', 'api', 'rpc'],
packages=[
"steempy",
"steempyapi",
"steempybase"
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial',
],
install_requires=[
"graphenelib>=0.5.9",
"websockets",
"appdirs",
"Events",
"scrypt",
"pycryptodomex", # for AES, installed through graphenelib already
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
)
from .steem import Steem
from .version import version as __version__
__all__ = [
"steem",
"aes",
......
from .version import version as __version__
__all__ = [
"steemnoderpc",
"exceptions",
......
from .version import version as __version__
__all__ = [
'account',
'bip38',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment