forked from protolambda/remerkleable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.34 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
from setuptools import setup, find_packages
with open("README.rst", "rt", encoding="utf8") as f:
readme = f.read()
setup(
name="remerkleable",
description="Typed mutable SSZ views over cached and immutable binary merkle trees",
version="0.1.27",
long_description=readme,
long_description_content_type="text/x-rst",
author="protolambda",
author_email="proto+pip@protolambda.com",
url="https://github.com/protolambda/remerkleable",
python_requires=">=3.8, <4",
license="MIT",
packages=find_packages(),
py_modules=["remerkleable"],
tests_require=[],
extras_require={
"testing": ["pytest"],
"linting": ["flake8"],
"docs": ["sphinx", "sphinx-autodoc-typehints", "pallets_sphinx_themes", "sphinx_issues"]
},
install_requires=[],
include_package_data=True,
keywords=["merkle", "merkleize", "merkle-tree", "merkle-trie", "trie", "ssz", "hash-tree-root", "eth2"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
],
)