-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.08 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
"""setup.py: setuptools control."""
from setuptools import setup, find_packages
__version__ = '1.1.0'
with open('README.md', 'r', encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='myb-uniswap-sdk',
author='Mine Your Business',
author_email='[email protected]',
packages=find_packages(exclude=("tests", "examples", "docs")),
package_data={'uniswap': ['assets/*.abi', 'assets/**/*.abi']},
version=__version__,
description='Python library for interacting with Uniswap',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'requests>=2.26.0',
'web3>=5.29.0',
'click>=8.1.3',
'python-dotenv>=0.19.0'
],
url='https://github.com/mine-your-business/myb-uniswap-sdk',
python_requires='>=3.7',
zip_safe=False,
license='GPL-3',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
)