- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
36 lines (33 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (33 loc) · 1.16 KB
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
importelectrum_scripting, os
try:
fromsetuptoolsimportsetup
exceptImportError:
fromdistutils.coreimportsetup
fromosimportpath
this_directory=path.abspath(path.dirname(__file__))
withopen(path.join(this_directory, 'README.md'), encoding='utf-8') asf:
long_description=f.read()
setup(
name='electrum_scripting',
version=electrum_scripting.__VERSION__,
description="Electrum wallet scripting interface wrapper",
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Programming Language :: Python :: 3',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
keywords='Electrum Scripting Wallet Bitcoin Crypto',
author="Stefan Liu",
author_email="stefanliu@outlook.com",
url="http://github.com/devfans/electrum-scripting",
license="MIT",
packages=["electrum_scripting"],
include_package_data=True,
zip_safe=True
)