-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.02 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
from sys import platform
from setuptools import find_packages, setup
if platform.startswith("win32"):
setup(
packages=find_packages(),
install_requires=[
"behave",
"pyhamcrest",
"google-cloud-bigquery",
"google",
"protobuf",
# on windows comment out pandas and install it manually from here:
# https://www.lfd.uci.edu/~gohlke/pythonlibs/#pandas
# "pandas",
"openpyxl",
"tqdm",
"allure-behave",
],
)
elif platform.startswith("linux"):
setup(
packages=find_packages(),
install_requires=[
"behave",
"pyhamcrest",
"google-cloud-bigquery",
"google",
"protobuf",
"pandas",
"openpyxl",
"tqdm",
"allure-behave",
],
)
else:
raise OSError(
f"This setup works for 'linux' and 'win32' platforms only.\nYour platform is {platform}"
)