-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (30 loc) · 969 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="scallop-server",
version="0.1",
scripts=['run_scallop_server','scallop-server'],
install_requires=['plyvel','jsonrpclib', 'irc>=11'],
package_dir={
'scallopserver':'src'
},
py_modules=[
'scallopserver.__init__',
'scallopserver.utils',
'scallopserver.storage',
'scallopserver.deserialize',
'scallopserver.networks',
'scallopserver.blockchain_processor',
'scallopserver.server_processor',
'scallopserver.processor',
'scallopserver.version',
'scallopserver.ircthread',
'scallopserver.stratum_tcp',
'scallopserver.stratum_http'
],
description="CLAM Electrum Server",
author="Thomas Voegtlin",
author_email="[email protected]",
license="GNU Affero GPLv3",
url="https://github.com/kefkius/scallop-server/",
long_description="""Server for Lightweight CLAM Wallets"""
)