-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (54 loc) · 1.63 KB
/
setup.py
File metadata and controls
57 lines (54 loc) · 1.63 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="optimpv",
version="v1.05",
author="Vincent M. Le Corre",
author_email="",
description="optimPV: Optimization & Modeling tools for PV research",
long_description=long_description,
long_description_content_type="text/markdown",
license='GPLv3',
url="https://github.com/openPV-lab/optimPV",
download_url="https://github.com/openPV-lab/optimPV/v1.05.tar.gz",
packages=setuptools.find_packages(),
readme = "README.md",
keywords=['Bayesian optimization', 'Evolutionary optimization','parameter extraction', 'experimental design', 'high throughput', 'solar cells'],
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
python_requires='>=3.12',
install_requires = [
'numpy>=1.2',
'pandas>=1.4',
'matplotlib>=3.5',
'jupyterlab>=3.4',
'seaborn>=0.11',
'scipy>=1.0',
'gitpython>=3.1',
'openpyxl>=3.0',
'pyodbc>=4.0',
'scikit-optimize>=0.9',
'pySIMsalabim>=1.3',
'tk',
'torch>=2.0',
'torchvision>=0.15',
'torchaudio>=2.0',
'emcee>=3.1',
'pymoo>=0.6',
'ax-platform>=1.2.4',
'arviz>=0.15.1,<1.0.0',
'pydantic'
],
extras_require = {
'dev': [
'pytest',
'twine',
],
},
include_package_data=True,
)