-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.02 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.02 KB
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
42
#!/usr/bin/env python3
from setuptools import setup
tests_require = [
"hypothesis",
"pytest",
"pytest-httpserver",
"schema",
]
install_requires = [
"Click",
"pickledb",
"PyNaCl",
"planetmint-driver>=0.9.4",
"mnemonic",
]
setup(
name="plntmnt_wallet",
version="0.0.1",
author="Jürgen Eckel",
author_email="juergen@riddleandcode.com",
description="Deterministic wallet implementation for Planetmint",
long_description=open("README.md").read(),
url="https://github.com/planetmint/wallet",
packages=["plntmnt_wallet"],
py_modules=[
"plntmnt_wallet.keystore",
"plntmnt_wallet.keymanagement",
"plntmnt_wallet._cli",
],
entry_points={
"console_scripts": ["plntmnt_wallet=plntmnt_wallet._cli:cli"],
},
zip_safe=False,
python_requires=">=3.5",
classifiers=[
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
],
extras_require={"test": tests_require + install_requires},
)