forked from cpyberry/Decentra-Network
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 879 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(name='decentra_network',
version='0.8.4',
description="""This is an open source decentralized application network. In this network, you can develop and publish decentralized applications.""",
long_description=open("README.md", "r").read(),
long_description_content_type='text/markdown',
url='https://decentra-network.github.io/Decentra-Network/',
author='Decentra Network Developers',
author_email='atadogan06@gmail.com',
license='MPL-2.0',
packages=["", "accounts", "app", "blockchain", "blockchain.block", "blockchain.candidate_block", "consensus", "gui_lib", "gui_lib.libs", "gui_lib.libs.baseclass", "lib", "node", "transactions", "wallet"],
include_package_data=True,
package_dir={'':'src'},
entry_points = {
'console_scripts': ['dngui = gui:start', 'dncli=cli:start', 'dnapi=api:start'],
},
python_requires=">=3.6",
zip_safe=False)