This repository was archived by the owner on Oct 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.33 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (37 loc) · 1.33 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, find_packages
# README.md
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
# requirements.txt
with open("requirements.txt", "r") as _requirements:
requirements = list(map(str.strip, _requirements.read().split("\n")))
setup(
name="eth-wallet",
version="0.3.1",
description="The implementation of Hierarchical Deterministic (HD) wallets generator for Ethereum protocol.",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPL-3.0",
author="Meheret Tesfaye",
author_email="meherett@zoho.com",
url="https://github.com/meherett/eth-wallet",
keywords=["ethereum-wallet", "eth", "wallet"],
python_requires=">=3.6,<4",
packages=find_packages(),
install_requires=requirements,
extras_require={
"tests": [
"pytest>=5.4.1,<6",
"pytest-cov>=2.8.1,<3"
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)