forked from javerianadeem/selenium_metamask_automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (26 loc) · 1.1 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
from setuptools import setup
import io
import os
here = os.path.abspath(os.path.dirname(__file__))
try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
except FileNotFoundError:
long_description = "Python package for automating metamask workflows"
setup(name='selenium_metamask_automation',
version='0.0.3',
packages=['selenium_metamask_automation'],
description="Python package for automating metamask workflows",
keywords="python metamask blockchain automate-metamask install-metamask-extension-selenium selenium-metamask metamask-automation",
install_requires=["selenium>=3.141.0"],
extras_require = {
'windows': ["pywin32"]
},
python_requires='>=3.8',
url='https://github.com/javerianadeem/selenium_metamask_automation.git',
homepage='https://github.com/javerianadeem/selenium_metamask_automation.git',
author='Javeria Nadeem',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown'
)