forked from rchain/pyrchain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 1.06 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
from pathlib import Path
import setuptools
setuptools.setup(
name='pyrchain',
version='0.4.0-alpha1',
author='RChain Cooperative',
author_email='[email protected]',
description='Interface to RChain RNode RPC',
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
url='https://github.com/rchain/pyrchain',
packages=setuptools.find_namespace_packages(include=['rchain', 'rchain.*']),
package_data={'rchain.vault': ['*.rho.tpl'], 'rchain.pb': ['*.pyi'], 'rchain.pb.scalapb': ['*.pyi']},
install_requires=[
'grpcio',
'protobuf',
'ecdsa',
'python-bitcoinlib',
'cryptography',
'eth_hash',
'pycryptodome',
'eth-keyfile',
'dataclasses',
'click'
],
entry_points={
'console_scripts': [
'pyrchain = rchain.__main__:cli',
],
},
extras_require={
'dev': ['grpcio-tools', 'mypy', 'typing-extensions', 'mypy-protobuf', 'isort', 'pytest==4.6.9', 'sphinx']},
zip_safe=False
)