-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.09 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
import setuptools
setuptools.setup(
name="pyzantium",
version="0.0.2",
author="Reza Mahdi",
author_email="rmahdi.develop@gmail.com",
url="https://github.com/rezamahdi/pyzantium",
description="Python implementation and building blocks for blockchain",
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Topic :: Security :: Cryptography",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
],
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.7",
install_requires=["cryptography"],
extras_require={
"dev": ["pytest", "pytest-cov", "pytest-mock"],
"fastapi": ["fastapi"],
"leveldb": ["plyvel"],
"doc": "sphinx",
},
entry_points={
"console_scripts": [
"pyz-node=pyzantium.node:main",
"pyz-client=pyzantium.client:main",
]
},
)