-
Notifications
You must be signed in to change notification settings - Fork 140
/
setup.py
41 lines (39 loc) · 1.79 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
37
38
39
40
41
from distutils.core import setup
execfile("Mce/version.py")
setup(
name = "MultiChain Explorer",
version = __version__,
requires = ['Crypto.Hash'],
packages = ['Mce', 'Mce.Chain'],
package_data = {'Mce': ['htdocs/*.*','htdocs/*/*.*']},
author = "Coin Sciences Ltd",
author_email = "[email protected]",
url = "https://github.com/MultiChain/multichain-explorer",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Database :: Front-Ends',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Office/Business :: Financial',
'Topic :: Security :: Cryptography',
#'Topic :: Software Development :: Libraries :: Python Modules',
],
description = "MultiChain Explorer: a free browser for MultiChain blockchains.",
long_description = """MultiChain Explorer reads a MultiChain block chain from disk, loads
it into a database, indexes it, and provides a web interface to search
and navigate it. MultiChain blockchains are similar to the Bitcoin blockchain with
the addition of native assets and permissions.
MultiChain Explorer is a fork of Abe.""",
)