-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.16 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
import electrum_scripting, os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
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="[email protected]",
url="http://github.com/devfans/electrum-scripting",
license="MIT",
packages=["electrum_scripting"],
include_package_data=True,
zip_safe=True
)