Skip to content

Commit

Permalink
rework setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
prusnak committed Jul 26, 2014
1 parent 33b7c2a commit c48303b
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
#!/usr/bin/env python
from setuptools import setup

#python setup.py sdist upload

setup(name='mnemonic',
version='0.8',
description='Implementation of Bitcoin BIP-0039',
author='Bitcoin TREZOR',
author_email='info@bitcointrezor.com',
url='https://github.com/trezor/python-mnemonic',
packages=['mnemonic',],
package_data={'mnemonic': ['wordlist/*.txt']},
zip_safe=False,
install_requires=['pbkdf2'],
)
setup(
name='mnemonic',
version='0.8',
author='Bitcoin TREZOR',
author_email='info@bitcointrezor.com',
description='Implementation of Bitcoin BIP-0039',
url='https://github.com/trezor/python-mnemonic',
packages=['mnemonic',],
package_data={'mnemonic': ['wordlist/*.txt']},
zip_safe=False,
install_requires=['pbkdf2'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
)

0 comments on commit c48303b

Please sign in to comment.