-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
73 lines (67 loc) · 1.64 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2023 Ocean Protocol Foundation
# SPDX-License-Identifier: Apache-2.0
#
"""The setup script."""
# Copyright 2018 Ocean Protocol Foundation
# SPDX-License-Identifier: Apache-2.0
from setuptools import find_packages, setup
# Installed by pip install ocean-provider
# or pip install -e .
install_requirements = [
"coverage",
"ccxt==3.0.84",
"eciespy",
"web3==6.20.3",
"py-solc-x",
"enforce_typing",
"mypy",
"numpy",
"pandas",
"pylint",
"pytest",
"pytest-env",
"requests",
"scipy",
"types-requests",
"black",
"ocean-contracts==2.0.0a15",
]
# Required to run setup.py:
setup_requirements = ["pytest-runner"]
setup(
author="oceanprotocol",
author_email="devops@oceanprotocol.com",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
],
description="DF PY lib.",
install_requires=install_requirements,
license="Apache Software License 2.0",
include_package_data=True,
packages=find_packages(
include=[
"df_py",
"build",
"contracts",
"data",
"interfaces",
"reports",
"scripts",
]
),
setup_requires=setup_requirements,
test_suite="tests",
url="https://github.com/oceanprotocol/provider-py",
# fmt: off
# bumpversion needs single quotes
version='0.0.4',
# fmt: on
zip_safe=False,
)