-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·52 lines (50 loc) · 1.62 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
49
50
51
52
from setuptools import setup
install_requires = [
"numpy",
"xarray",
"pint",
"frozendict",
"pint_xarray",
"Deprecated",
"scipy",
"pyyaml",
"requests",
]
tests_require = ["pytest", "pytest-cov", "pytest-flake8", "pytest-mypy", "hypothesis"]
docs_require = []
extras_require = {
"dev": tests_require + docs_require + ["pre-commit", "bump2version"],
"docs": docs_require,
"test": tests_require,
}
setup(
name="solcore",
version="6.0.0",
description="Python-based solar cell simulator",
url="https://github.com/qpv-research-group/solcore6",
download_url="https://github.com/qpv-research-group/solcore6/archive/v6.0.0.tar.gz",
project_urls={
"Solcore research paper": "https://doi.org/10.1007/s10825-018-1171-3",
},
author="The Quantum Photovoltaics Group",
author_email="[email protected]",
license="GNU General Public License",
python_requires=">=3.7",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
keywords="photovoltaics modelling physics",
include_package_data=True,
install_requires=install_requires,
tests_require=tests_require,
extras_require=extras_require,
)