Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

04f59a9db1b873fec2a553d394efac2618e7e073 #1

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,7 @@ docs/_build/
# PyBuilder
target/
test_basedir/


# custom make scripts
Makefile
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ install:
script:
- pep8 micropayment_core
- coverage run --source="micropayment_core" setup.py test
- coverage report --fail-under=99
- coverage report --fail-under=100

after_success:
- coveralls

notifications:
slack: storjcommunity:TZfUO9ycY8R9UYwztWZTo0jk
email: false
slack:
secure: cl0G5fWZNnIK5VQ6BPZ4RtwVO2/nfvX/zjhljfF6cQ20OKyvyiJHq+e67fl2pkCKDlqlEqSWaQJ6G52YzUpDQmf+o7qpH6YnkFxSqYp5h4YF1hJw4sCHJ7bVSLrjogWxU8QaNvH7YpL4YkGe+WOau2FgoIZOcMt6hhKrvWclfuc=

101 changes: 0 additions & 101 deletions Makefile

This file was deleted.

14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ Counterparty Micropayment Utils
|BuildLink|_ |CoverageLink|_ |LicenseLink|_ |IssuesLink|_


.. |BuildLink| image:: https://travis-ci.org/F483/micropayment-core.svg
.. _BuildLink: https://travis-ci.org/F483/micropayment-core
.. |BuildLink| image:: https://travis-ci.org/CounterpartyXCP/micropayment-core.svg
.. _BuildLink: https://travis-ci.org/CounterpartyXCP/micropayment-core

.. |CoverageLink| image:: https://coveralls.io/repos/F483/micropayment-core/badge.svg
.. _CoverageLink: https://coveralls.io/r/F483/micropayment-core
.. |CoverageLink| image:: https://coveralls.io/repos/CounterpartyXCP/micropayment-core/badge.svg
.. _CoverageLink: https://coveralls.io/r/CounterpartyXCP/micropayment-core

.. |LicenseLink| image:: https://img.shields.io/badge/license-MIT-blue.svg
.. _LicenseLink: https://raw.githubusercontent.com/F483/micropayment-core/master/LICENSE
.. _LicenseLink: https://raw.githubusercontent.com/CounterpartyXCP/micropayment-core/master/LICENSE

.. |IssuesLink| image:: https://img.shields.io/github/issues/F483/micropayment-core.svg
.. _IssuesLink: https://github.com/F483/micropayment-core/issues
.. |IssuesLink| image:: https://img.shields.io/github/issues/CounterpartyXCP/micropayment-core.svg
.. _IssuesLink: https://github.com/CounterpartyXCP/micropayment-core/issues


Micropayment core utils for counterparty assets.
5 changes: 0 additions & 5 deletions micropayment_core/keys.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# coding: utf-8
# Copyright (c) 2016 Fabian Barkhau <[email protected]>
# License: MIT (see LICENSE file)


import os
import hashlib
from ecdsa import SigningKey
Expand Down
5 changes: 0 additions & 5 deletions micropayment_core/scripts.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# coding: utf-8
# Copyright (c) 2016 Fabian Barkhau <[email protected]>
# License: MIT (see LICENSE file)


from pycoin import ecdsa
from pycoin import encoding
from pycoin.key import Key
Expand Down
5 changes: 0 additions & 5 deletions micropayment_core/util.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# coding: utf-8
# Copyright (c) 2016 Fabian Barkhau <[email protected]>
# License: MIT (see LICENSE file)


import codecs
import contextlib
import sys
Expand Down
5 changes: 0 additions & 5 deletions micropayment_core/version.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# coding: utf-8
# Copyright (c) 2016 Fabian Barkhau <[email protected]>
# License: MIT (see LICENSE file)


# Store the version here so:
# 1) we don't load dependencies by storing it in __init__.py
# 2) we can import it in setup.py for the same reason
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pycoin == 0.76
pycoin >= 0.76
ecdsa >= 0.13
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
scripts=[],
description="Micropayment core utils for counterparty assets.",
long_description=open("README.rst").read(),
keywords="storj, counterparty, micropayment, core",
url='http://storj.io',
author='Fabian Barkhau',
author_email='[email protected]',
keywords="counterparty, micropayment, core",
url='http://counterparty.io',
author='Counterparty Developers',
author_email='[email protected]',
maintainer='Counterparty Developers',
maintainer_email='[email protected]',
license="MIT",
version=__version__, # NOQA
test_suite="tests",
Expand All @@ -28,9 +30,9 @@
packages=find_packages(),
classifiers=[
# "Development Status :: 1 - Planning",
"Development Status :: 2 - Pre-Alpha",
# "Development Status :: 2 - Pre-Alpha",
# "Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
Expand Down