-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 809 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 809 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
28
from setuptools import setup, find_packages
setup(
name='sofie_interledger',
version='0.1',
description=(
'Template implementation of the SOFIE project\'s '
'Interledger component'
),
url='https://github.com/SOFIE-project/Interledger',
author='SOFIE Project',
author_email='sofie-offer-interledger@sofie-iot.eu',
license='APL 2.0',
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires=[
'web3',
'sqlalchemy',
'requests == 2.20.0',
'protobuf >= 3.10.0, < 4',
'fabric-sdk-py'
],
dependency_links=[
'https://github.com/hyperledger/fabric-sdk-py/tarball/master#egg=fabric-sdk-py'
],
tests_require=['pytest', 'pytest-asyncio', 'fabric-sdk-py'],
zip_safe=False
)