This repository has been archived by the owner on Aug 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (57 loc) · 1.52 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2023 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 = [
"enforce_typing",
"pylint",
"bumpversion",
"requests",
"web3",
"coverage",
"eth-account",
"pathlib",
"eth-keys",
"ocean-contracts==2.0.0a2",
"pdr-sapphire-wrapper",
]
# Required to run setup.py:
setup_requirements = ["pytest-runner"]
with open("README.md", encoding="utf8") as readme_file:
readme = readme_file.read()
setup(
author="oceanprotocol",
author_email="[email protected]",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
],
description="Predictoor utils lib.",
install_requires=install_requirements,
name="pdr-utils",
license="Apache Software License 2.0",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
packages=find_packages(
include=[
"pdr_utils",
]
),
setup_requires=setup_requirements,
test_suite="tests",
url="https://github.com/oceanprotocol/pdr-utils",
# fmt: off
# bumpversion needs single quotes
version='0.0.14',
# fmt: on
zip_safe=False,
)