-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (25 loc) · 680 Bytes
/
setup.py
File metadata and controls
32 lines (25 loc) · 680 Bytes
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
from setuptools import setup, find_packages
setup(
name="testbuilder",
version="0.2.32",
packages=find_packages(),
description="A python testing framework for frontend testing",
package_data = {
'': ['*.csv', '*.yaml'],
},
install_requires=[
"click==6.7",
"PyYAML==5.4",
"pandas==0.23.3",
"selenium==3.13.0"
],
project_urls={
"Source": "https://github.com/AsafSilman/testbuilder",
},
classifiers=[
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.7"
],
author="Asaf Silman",
author_email="asaf.silman@health.wa.gov.au"
)