-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
61 lines (57 loc) · 1.75 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup, find_packages
import bas_remote
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.readlines()
setup(
name='bas-remote-python',
description='Python library, which allows you to automate Google Chrome browser.',
url='https://github.com/CheshireCaat/bas-remote-python',
long_description_content_type='text/markdown',
long_description=long_description,
author_email='[email protected]',
project_urls={
"Documentation": "https://github.com/CheshireCaat/bas-remote-python/wiki",
},
classifiers=[
'Intended Audience :: Developers',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
version=bas_remote.__version__,
license=bas_remote.__license__,
author=bas_remote.__author__,
packages=find_packages(),
keywords=[
'visual-programming-language',
'browserautomationstudio',
'bas-remote-control',
'bas-remote-client',
'bot-framework',
'bas-remote',
'bas-client',
'automation',
'chromium',
'imacros',
'windows',
'desktop',
'browser',
'grabber',
'poster',
'macros',
'bas',
'ide',
'cef',
'bot'
],
install_requires=requirements,
python_requires=">=3.7",
test_suite='tests',
)