-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
48 lines (43 loc) · 1.52 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
from setuptools import setup, find_packages
DISTNAME = "Quest"
VERSION = "2.0"
PYTHON_REQUIRES = ">=3.6, <3.11"
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"
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,
install_requires=[
"PySide6==6.5.2",
"pandas==2.2.1",
"streamlit==1.32.0",
"openai==0.28.1",
"configparser==6.0.1",
"matplotlib==3.8.3",
"geopandas==0.14.3",
"psutil==5.9.0",
"GitPython==3.1.43",
'NodeGraphQt @ git+https://github.com/cancom84/NodeGraphQt-PySide6.git'
],
package_data={
'': ['*.txt', '*.rst', '*.json', '*.jpg', '*.qss', '*.sh', '*.svg', '*.png', '*.kv', '*.bat', '*.csv', '*.md', '*.yml', '*.dll', '*.idf', '*.doctree', '.*info', '*.html', '*.js', '*.inv', '*.gif', '*.css', '*.eps', '*.pickle', '*.xlsx', '*.ttf', '*.pdf', '**/license*', '*.yml', '*.ui', '*.eot', '*.woff', '*.woff2', 'LICENSE', '*.mplstyle', '*.ini' ],
},
entry_points={
'console_scripts': [
'quest = quest.__main__:main'
]
}
)