-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 881 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='django-ark',
version='0.1.4',
packages=['ark', 'ark.migrations'],
url='https://github.com/BlockHub/django-ark',
license='MIT',
author='Charles',
author_email='karel@blockhub.nl',
description='ark blockchain integration with Django',
install_requires=[
'Arky','base58', 'certifi', 'cffi', 'chardet', 'Django', 'psycopg2-binary'
'django-compat', 'django-filter', 'docopt', 'ecdsa', 'ECPy', 'future', 'graphene',
'graphene-django', 'graphql-core', 'graphql-relay', 'hidapi', 'idna', 'iso8601',
'jsonfield', 'ledgerblue', 'Pillow', 'pkginfo', 'promise', 'protobuf',
'pycparser', 'pycrypto', 'PyNaCl', 'python-dateutil', 'python-decouple', 'pytz',
'requests', 'requests-toolbelt', 'Rx', 'singledispatch', 'six', 'tqdm',
'typing', 'urllib3'
],
)