diff --git a/.gitignore b/.gitignore index bfa53fa..cff9c4b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,5 @@ build/ dist/ .github/ pybtc.egg-info/ -*.pyc - +pyflo.egg-info/ +*.pyc \ No newline at end of file diff --git a/pyflo/__pycache__/__init__.cpython-36.pyc b/pyflo/__pycache__/__init__.cpython-36.pyc deleted file mode 100644 index 02ca500..0000000 Binary files a/pyflo/__pycache__/__init__.cpython-36.pyc and /dev/null differ diff --git a/pyflo/__pycache__/__init__.cpython-38.pyc b/pyflo/__pycache__/__init__.cpython-38.pyc deleted file mode 100644 index 76df823..0000000 Binary files a/pyflo/__pycache__/__init__.cpython-38.pyc and /dev/null differ diff --git a/pyflo/__pycache__/address.cpython-36.pyc b/pyflo/__pycache__/address.cpython-36.pyc deleted file mode 100644 index bfdd591..0000000 Binary files a/pyflo/__pycache__/address.cpython-36.pyc and /dev/null differ diff --git a/pyflo/__pycache__/address.cpython-38.pyc b/pyflo/__pycache__/address.cpython-38.pyc deleted file mode 100644 index 9e8cc81..0000000 Binary files a/pyflo/__pycache__/address.cpython-38.pyc and /dev/null differ diff --git a/pyflo/__pycache__/block.cpython-36.pyc b/pyflo/__pycache__/block.cpython-36.pyc deleted file mode 100644 index 6d41026..0000000 Binary files a/pyflo/__pycache__/block.cpython-36.pyc and /dev/null differ diff --git a/pyflo/__pycache__/block.cpython-38.pyc b/pyflo/__pycache__/block.cpython-38.pyc deleted file mode 100644 index 0568787..0000000 Binary files a/pyflo/__pycache__/block.cpython-38.pyc and /dev/null differ diff --git a/pyflo/__pycache__/consensus.cpython-36.pyc b/pyflo/__pycache__/consensus.cpython-36.pyc deleted file mode 100644 index 118ee80..0000000 Binary files a/pyflo/__pycache__/consensus.cpython-36.pyc and /dev/null differ diff --git a/pyflo/__pycache__/consensus.cpython-38.pyc b/pyflo/__pycache__/consensus.cpython-38.pyc deleted file mode 100644 index 27d0852..0000000 Binary files a/pyflo/__pycache__/consensus.cpython-38.pyc and /dev/null differ diff --git a/pyflo/__pycache__/constants.cpython-36.pyc b/pyflo/__pycache__/constants.cpython-36.pyc deleted file mode 100644 index c25b82e..0000000 Binary files a/pyflo/__pycache__/constants.cpython-36.pyc and /dev/null differ diff --git a/pyflo/__pycache__/constants.cpython-38.pyc b/pyflo/__pycache__/constants.cpython-38.pyc deleted file mode 100644 index 4450685..0000000 Binary files a/pyflo/__pycache__/constants.cpython-38.pyc and /dev/null differ diff --git a/pyflo/__pycache__/opcodes.cpython-36.pyc b/pyflo/__pycache__/opcodes.cpython-36.pyc deleted file mode 100644 index ee34c64..0000000 Binary files a/pyflo/__pycache__/opcodes.cpython-36.pyc and /dev/null differ diff --git a/pyflo/__pycache__/opcodes.cpython-38.pyc b/pyflo/__pycache__/opcodes.cpython-38.pyc deleted file mode 100644 index 85d6052..0000000 Binary files a/pyflo/__pycache__/opcodes.cpython-38.pyc and /dev/null differ diff --git a/pyflo/__pycache__/transaction.cpython-36.pyc b/pyflo/__pycache__/transaction.cpython-36.pyc deleted file mode 100644 index 8b007a5..0000000 Binary files a/pyflo/__pycache__/transaction.cpython-36.pyc and /dev/null differ diff --git a/pyflo/__pycache__/transaction.cpython-38.pyc b/pyflo/__pycache__/transaction.cpython-38.pyc deleted file mode 100644 index 221fa73..0000000 Binary files a/pyflo/__pycache__/transaction.cpython-38.pyc and /dev/null differ diff --git a/pyflo/__pycache__/wallet.cpython-36.pyc b/pyflo/__pycache__/wallet.cpython-36.pyc deleted file mode 100644 index 9808341..0000000 Binary files a/pyflo/__pycache__/wallet.cpython-36.pyc and /dev/null differ diff --git a/pyflo/__pycache__/wallet.cpython-38.pyc b/pyflo/__pycache__/wallet.cpython-38.pyc deleted file mode 100644 index 2649863..0000000 Binary files a/pyflo/__pycache__/wallet.cpython-38.pyc and /dev/null differ diff --git a/setup.py b/setup.py index 95eb9ea..e9ecb2e 100644 --- a/setup.py +++ b/setup.py @@ -4,19 +4,19 @@ from setuptools import setup, find_packages -setup(name='pybtc', +setup(name='pyflo', version='2.0.9', - description='Python Bitcoin library', - keywords='bitcoin', - url='https://github.com/bitaps-com/pybtc', - author='Alexsei Karpov', - author_email='admin@bitaps.com', + description='Python FLO library', + keywords='flo', + url='https://github.com/ranchimall/pyflo', + author='Ranchi Mall', + author_email='ranchimallfze@gmail.com', license='GPL-3.0', packages=find_packages(), install_requires=['secp256k1'], include_package_data=True, package_data={ - 'pybtc': ['bip39_word_list/*.txt', 'test/*.txt'], + 'pyflo': ['bip39_word_list/*.txt', 'test/*.txt'], }, test_suite='tests', zip_safe=False) diff --git a/tests.py b/tests.py index 969082e..10b794c 100644 --- a/tests.py +++ b/tests.py @@ -1,9 +1,9 @@ import unittest -import pybtc.test +import pyflo.test testLoad = unittest.TestLoader() -suites = testLoad.loadTestsFromModule(pybtc.test) +suites = testLoad.loadTestsFromModule(pyflo.test) runner = unittest.TextTestRunner(verbosity=1) runner.run(suites)