-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (54 loc) · 1.66 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (54 loc) · 1.66 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
from io import open
from setuptools import setup
setup(
author="Decentra Network Developers",
author_email="onur@decentranetwork.net",
packages=["decentra_network"],
name="decentra_network",
version="0.44.0",
url="https://github.com/Decentra-Network/Decentra-Network",
description=
"This is an open source decentralized application network. In this network, you can develop and publish decentralized applications.",
keywords=[
"python",
"cryptography",
"blockchain",
"p2p",
"python3",
"cryptocurrency",
"kivy",
"coin",
"copilot",
"fba",
"dapps",
"p2p-network",
"kivymd",
"blokzinciri",
"decentra-network",
"githubcopilot",
"blokzincir",
],
long_description_content_type="text/markdown",
long_description="".join(open("README.md", encoding="utf-8").readlines()),
include_package_data=True,
entry_points={
"console_scripts": [
"dngui = decentra_network.gui.main:start",
"dncli = decentra_network.cli.main:start",
"dnapi = decentra_network.api.main:start",
],
},
license="MPL-2.0",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
],
python_requires=">=3.8",
)