-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (30 loc) · 973 Bytes
/
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
from setuptools import setup
setup(
name="tate-server",
version="0.9",
scripts=['run_tate_server','tate-server'],
install_requires=['plyvel','jsonrpclib', 'irc'],
package_dir={
'tateserver':'src'
},
py_modules=[
'tateserver.__init__',
'tateserver.utils',
'tateserver.storage',
'tateserver.deserialize',
'tateserver.networks',
'tateserver.blockchain_processor',
'tateserver.server_processor',
'tateserver.processor',
'tateserver.version',
'tateserver.ircthread',
'tateserver.stratum_tcp',
'tateserver.stratum_http'
],
description="Mazacoin Tate Server",
author="Thomas Voegtlin",
author_email="[email protected]",
license="GNU Affero GPLv3",
url="https://github.com/spesmilo/electrum-server/",
long_description="""Server for the Tate lightweight Mazacoin wallet. Forked by mazaclub from Electrum-server."""
)