-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup_cx.py
52 lines (48 loc) · 1.26 KB
/
setup_cx.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
from setuptools import setup, find_packages
from cx_Freeze import setup, Executable
DISTNAME = "Quest"
VERSION = "2.0"
PYTHON_REQUIRES = ">=3.6"
DESCRIPTION = "Sandia National Laboratories Energy Storage Application Platform"
LONG_DESCRIPTION = open("README.md").read()
AUTHOR = "Sandia National Laboratories"
MAINTAINER_EMAIL = "[email protected]"
LICENSE = "BSD 3-clause"
URL = "https://github.com/sandialabs/snl-quest.git"
options = {
'build_exe': {
'packages': [
"PySide6",
"pandas",
"streamlit",
"openai",
"configparser",
"matplotlib",
"geopandas",
"psutil",
"NodeGraphQt"
],
'include_files': [
("README.md", "README.md"),
("LICENSE", "LICENSE"),
("quest", "quest")
],
},
}
base = None
executables = [Executable("quest/__main__.py", base=base)]
setup(
name=DISTNAME,
version=VERSION,
packages=find_packages(),
include_package_data=True,
python_requires=PYTHON_REQUIRES,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
maintainer_email=MAINTAINER_EMAIL,
license=LICENSE,
url=URL,
executables=executables,
options=options
)