-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name="predictoor-data",
version="0.1.5",
author="oceanprotocol",
author_email="[email protected]",
packages=find_packages(),
package_data={
'predictoor_data': ['abis/*.json'],
},
include_package_data=True,
install_requires=[
"requests>=2.25.0",
"pandas>=1.2.0",
"python-dateutil>=2.8.0",
"pytest>=6.0.0",
"mypy>=0.900",
"black>=21.0",
"web3==6.20.2",
"eth-account==0.11.0",
],
description="A package for fetching historical and prediction data",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/oceanprotocol/predictoor-data",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
],
python_requires=">=3.7",
)