File: setup.py

package info (click to toggle)
python-bip32utils 0.0~git20170118.dd9c541-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 232 kB
  • sloc: python: 468; sh: 39; makefile: 3
file content (16 lines) | stat: -rwxr-xr-x 484 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python3

from setuptools import setup

setup(
    name = 'bip32utils',
    version = '0.3-3',
    author = 'Johnathan Corgan, Corgan Labs',
    author_email = 'johnathan@corganlabs.com',
    maintainer = 'Pavol Rusnak',
    maintainer_email = 'stick@gk2.sk',
    url = 'http://github.com/prusnak/bip32utils',
    description = 'Utilities for generating and using Bitcoin Hierarchical Deterministic wallets (BIP0032).',
    license = 'MIT',
    packages = ['bip32utils'],
)