forked from mazaclub/hashmal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 968 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
32
33
34
35
36
from setuptools import setup
from hashmal_lib.gui_utils import hashmal_entry_points
with open('requirements.txt') as f:
requirements = f.readlines()
requirements = [i.replace('\n', '') for i in requirements]
setup(
name='Hashmal',
version = '0.1.0a',
description='Bitcoin transaction script IDE.',
url='https://github.com/mazaclub/hashmal',
install_requires = requirements,
author='Tyler Willis, mazaclub',
author_email='[email protected]',
keywords=[
'bitcoin',
'transaction',
'script',
'ide'
],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development :: Interpreters'
],
scripts=['hashmal'],
packages=[
'hashmal_lib',
'hashmal_lib.core',
'hashmal_lib.plugins',
'hashmal_lib.widgets'
],
entry_points = hashmal_entry_points,
test_suite = 'hashmal_lib.tests'
)