Changes for PyPI

This commit is contained in:
Vivek Teega 2023-02-20 21:10:39 +05:30
parent 1f7cbcfa13
commit 64119f8baa
19 changed files with 11 additions and 11 deletions

4
.gitignore vendored
View File

@ -3,5 +3,5 @@ build/
dist/
.github/
pybtc.egg-info/
*.pyc
pyflo.egg-info/
*.pyc

View File

@ -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)

View File

@ -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)