-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
27 lines (24 loc) · 858 Bytes
/
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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name='1inch.py',
version='2.0.3',
url='https://github.com/RichardAtCT/1inch_wrapper',
long_description_content_type="text/markdown",
long_description=long_description,
keywords="1inch, wrapper, aggregator, DEX",
packages=find_packages(include=['oneinch_py', 'oneinch_py.*']),
include_package_data=True,
install_requires=[
'requests>=2.32.3',
'web3>=7.3.0',
'setuptools>=75.1.0'],
python_requires=">=3.7, <4",
license='MIT',
author='RichardAt',
author_email='richardatk01@gmail.com',
description='a Python wrapper for the 1inch API'
)