-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 1.07 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
from setuptools import find_packages, setup
readme = ""
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="Sapphire transaction wrapper",
install_requires=[],
name="sapphire.py",
license="Apache Software License 2.0",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
packages=find_packages(
include=[
"sapphirepy",
]
),
url="https://github.com/oceanprotocol/sapphirepy",
version="0.2.3",
zip_safe=False,
data_files=[
(
"sapphirepy_bin",
["bin/sapphirewrapper-amd64.dylib", "bin/sapphirewrapper-arm64.dylib", "bin/sapphirewrapper-amd64.so", "bin/sapphirewrapper-arm64.so", "bin/sapphirewrapper-amd64.dll"],
)
],
)