-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.06 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.06 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pvinspect",
version="0.4.3",
author="Mathis Hoffmann",
author_email="mathis.hoffmann@fau.de",
description="Provides methods for the analysis of PV modules using different modalities",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ma0ho/pvinspect",
packages=setuptools.find_packages(),
python_requires=">=3.7, <3.11",
install_requires=[
"numpy >= 1.16.5",
"scikit-image >= 0.16",
"matplotlib",
"tqdm",
"scipy",
"requests",
"gdown",
"opencv-python",
"shapely",
"optuna",
"scikit-learn",
"pillow >= 7.2.0",
"pandas >= 1.0.0",
"docstring_parser",
"typing_extensions",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)