-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (40 loc) · 1.01 KB
/
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
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
from setuptools import setup
setup(
name="bigchaindb-wallet",
version="0.0.1",
author="David Dashyan",
author_email="[email protected]",
description="Deterministic wallet implementation for BigchainDB",
long_description=open("README.md").read(),
url="https://github.com/bigchaindb/bigchaindb_wallet",
packages=["bigchaindb_wallet"],
py_modules=[
"bigchaindb_wallet.keystore",
"bigchaindb_wallet.keymanagement",
"bigchaindb_wallet._cli"
],
install_requires=[
"Click",
"pickledb",
"PyNaCl",
"bigchaindb_driver",
"mnemonic",
],
entry_points='''
[console_scripts]
bdbw=bigchaindb_wallet._cli:cli
''',
tests_require=[
"hypothesis",
"pytest",
"pytest-httpserver",
"schema",
],
zip_safe=False,
python_requires=">=3.5",
classifiers=[
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
],
)