forked from Flora-Network/flora-dev-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 637 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 637 Bytes
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
from setuptools import setup
if __name__ == '__main__':
setup(
name='fd_cli',
version='0.0.1',
packages=[
'fd_cli'
],
url='https://github.com/zqrx/fd-cli',
license='GNU General Public License v2.0',
author='zqrx',
author_email='',
description='',
install_requires=[
'click~=7.1.2',
'chia-blockchain~=1.2.3',
'setuptools~=57.0.0',
'requests~=2.26.0'
],
entry_points={
'console_scripts': [
'fd-cli = fd_cli.fd_cli:main'
]
}
)