-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
32 lines (31 loc) · 955 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import setuptools
setuptools.setup(
name='mimblewimble',
version='0.4.0',
packages=['mimblewimble'],
license='MIT',
description = 'A toolset for processing Grin Mimblewimble data structures',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author = 'Marek Narozniak',
author_email = '[email protected]',
install_requires=[
'base58',
'siphash-cffi',
'secp256k1-zkp-mw',
'bip_utils',
'bip32',
'pynacl',
'pyrage'],
url = 'https://github.com/grinventions/mimblewimble-py',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
package_data = {
'': ['static/__init__.py', 'static/wordlist.json'],
}
)