-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (29 loc) · 933 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (29 loc) · 933 Bytes
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
#!/usr/bin/env python3
from distutils.core import setup
setup(name='gitlake',
version='0.60',
description='Decentralized special remotes for git-annex',
author='Karl Semich',
author_email='0xloem@gmail.com',
url='https://github.com/xloem/gitlakepy',
packages=['gitlake'],
scripts=[
'scripts/git-annex-remote-freenet',
'scripts/git-annex-remote-siaskynet',
'scripts/git-annex-remote-bsv',
'scripts/git-annex-remote-arkb-subprocess',
'scripts/git-remote-arkb-subprocess',
'scripts/git-annex-remote-w3-subprocess',
# 'scripts/git-annex-remote-w3-hybrid'
],
install_requires=[
'siaskynet',
'polyglot-bitcoin',
'annexremote',
'flock',
'bitcoinx',
'graphene',
'pyarweave @ git+https://github.com/xloem/pyarweave',
'yarl39',
],
)