forked from oceanprotocol/ocean.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
108 lines (98 loc) · 2.62 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2022 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_namespace_packages, setup
with open("README.md", encoding="utf8") as readme_file:
readme = readme_file.read()
# Installed by pip install ocean-lib
# or pip install -e .
install_requirements = [
"ocean-contracts==1.0.0a28",
"coloredlogs",
"pyopenssl",
"PyJWT", # not jwt
"PyYAML==5.4.1",
"requests>=2.21.0",
"deprecated",
"pycryptodomex",
"tqdm",
"pytz",
"web3==5.28.0",
"cryptography==3.3.2",
"scipy",
"enforce-typing==1.0.0.post1",
"json-sempai==0.4.0",
"eciespy",
# web3 requires eth-abi, requests, and more,
# so those will be installed too.
# See https://github.com/ethereum/web3.py/blob/master/setup.py
]
# Required to run setup.py:
setup_requirements = ["pytest-runner"]
test_requirements = [
"codacy-coverage",
"coverage",
"docker",
"mccabe",
"pylint",
"pytest",
"pytest-watch",
"Pillow",
"matplotlib",
"mkcodes==0.1.1",
]
# Possibly required by developers of ocean-lib:
dev_requirements = [
"bumpversion",
"pkginfo",
"twine",
"watchdog",
"flake8==3.9.2",
"isort==5.10.1",
"black==22.1.0",
"pre-commit",
# for the following: maybe needed, maybe not
"pytest",
"licenseheaders==0.8.8",
"pytest-env",
]
packages = find_namespace_packages(include=["ocean_lib*"], exclude=["*test*"])
setup(
author="leucothia",
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="🐳 Ocean protocol library.",
extras_require={
"test": test_requirements,
"dev": dev_requirements + test_requirements,
},
install_requires=install_requirements,
license="Apache Software License 2.0",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="ocean-lib",
name="ocean-lib",
packages=packages,
setup_requires=setup_requirements,
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/oceanprotocol/ocean.py",
# fmt: off
# bumpversion.sh needs single-quotes
version='1.0.0-alpha.2',
# fmt: on
zip_safe=False,
)