|
1 | 1 | from setuptools import setup |
2 | 2 | from bitcoinutils import __version__ |
3 | 3 |
|
4 | | -#with open('requirements.txt') as f: |
| 4 | +# with open('requirements.txt') as f: |
5 | 5 | # requirements = f.read().splitlines() |
6 | 6 |
|
7 | | -#install_reqs = parse_requirements('requirements.txt', session=False) |
8 | | -#requirements = [str(ir.req) for ir in install_reqs] |
| 7 | +# install_reqs = parse_requirements('requirements.txt', session=False) |
| 8 | +# requirements = [str(ir.req) for ir in install_reqs] |
9 | 9 |
|
10 | | -with open('README.rst') as readme: |
| 10 | +with open("README.rst") as readme: |
11 | 11 | long_description = readme.read() |
12 | 12 |
|
13 | | -setup(name='bitcoin-utils', |
14 | | - version=__version__, |
15 | | - description='Bitcoin utility functions', |
16 | | - long_description=long_description, |
17 | | - author='Konstantinos Karasavvas', |
18 | | - author_email='kkarasavvas@gmail.com', |
19 | | - url='https://github.com/karask/python-bitcoin-utils', |
20 | | - license='MIT', |
21 | | - keywords='bitcoin library utilities tools', |
22 | | - install_requires=[ |
23 | | - 'base58check>=1.0.2,<2.0', |
24 | | - 'ecdsa==0.18.0', |
25 | | - 'sympy>=1.2,<2.0', |
26 | | - 'python-bitcoinrpc>=1.0,<2.0', |
27 | | - 'hdwallet==2.2.1' |
28 | | - ], |
29 | | - packages=['bitcoinutils'], |
30 | | - #package_data={ |
31 | | - # 'bitcoinutils': ['requirements.txt'] |
32 | | - #}, |
33 | | - #include_package_data=True, |
34 | | - zip_safe=False |
35 | | - ) |
36 | | - |
| 13 | +setup( |
| 14 | + name="bitcoin-utils", |
| 15 | + version=__version__, |
| 16 | + description="Bitcoin utility functions", |
| 17 | + long_description=long_description, |
| 18 | + author="Konstantinos Karasavvas", |
| 19 | + author_email="kkarasavvas@gmail.com", |
| 20 | + url="https://github.com/karask/python-bitcoin-utils", |
| 21 | + license="MIT", |
| 22 | + keywords="bitcoin library utilities tools", |
| 23 | + install_requires=[ |
| 24 | + "base58check>=1.0.2,<2.0", |
| 25 | + "ecdsa==0.19.0", |
| 26 | + "sympy>=1.2,<2.0", |
| 27 | + "python-bitcoinrpc>=1.0,<2.0", |
| 28 | + "hdwallet~=3.0", |
| 29 | + ], |
| 30 | + packages=["bitcoinutils"], |
| 31 | + # package_data={ |
| 32 | + # 'bitcoinutils': ['requirements.txt'] |
| 33 | + # }, |
| 34 | + # include_package_data=True, |
| 35 | + zip_safe=False, |
| 36 | +) |
0 commit comments