-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.04 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.04 KB
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
from setuptools import setup
from selenible.version import VERSION
with open("README.md") as f:
long_descr = f.read()
setup(
name="selenible",
version=VERSION,
description="selenium like ansible",
long_description=long_descr,
long_description_content_type="text/markdown",
author="Takashi WATANABE",
author_email="wtnb75@gmail.com",
url="https://github.com/wtnb75/selenible",
packages=["selenible", "selenible.modules", "selenible.drivers"],
package_data={"selenible": ["schema/*.yaml", "seleniblepiter/*"]},
license="MIT",
install_requires=open("requirements.txt").readlines(),
entry_points={
"console_scripts": [
"selenible=selenible.cli:cli"
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 3',
],
python_requires='>=3',
keywords="selenium web test",
)