-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 776 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 776 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
from setuptools import setup
version = "0.1.3"
setup(
name='bitgo',
packages=['bitgo'],
version=version,
description='alpha version of a bitgo python library',
author='Sebastian Serrano',
author_email='sebastian@bitpagos.com',
entry_points={
'console_scripts':
[
'bitgo = bitgo.cmd:main',
]
},
url='https://github.com/sserrano44/pybitgo',
download_url='https://github.com/sserrano44/pybitgo/tarball/%s' % version,
keywords=['bitcoin', 'bitgo'],
classifiers=[
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=["pycryptodome", "requests", "pycoin"]
)