-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·50 lines (43 loc) · 1.04 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
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
from bitsharesqt.version import VERSION, BUNDLE_NAME, SHORT_DESCRIPTION
from setuptools import setup
DATA_FILES = [ ]
setup(
name="citadel",
version=VERSION,
description=SHORT_DESCRIPTION,
author="John Titor",
author_email="john.titor@openmailbox.org",
license="",
url="https://citadel.li/desktop",
long_description=SHORT_DESCRIPTION,
#packages=["citadel"],
packages=[
"bitsharesbase",
"bitsharesapi",
"bitshares",
"bitsharesextra",
"bitsharesqt",
"grapheneapi",
"graphenebase",
"graphenestorage",
"websocket",
"pytimeparse",
"rpcs",
"uidef",
],
scripts=["citadel"],
install_requires=[
'six', 'ecdsa', 'appdirs', 'pysocks',
'qrcode', 'requests', 'pycryptodomex',
'pyqtgraph', 'scrypt', 'secp256k1prp'
],
package_data={
'citadel': [
# filenames
]
},
data_files=DATA_FILES,
options={ },
setup_requires=[ ],
)