-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
29 lines (26 loc) · 936 Bytes
/
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
from setuptools import setup, find_packages
from pv_vision import __version__
with open("long_description.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
setup(
name="pv_vision",
version=__version__,
author="XinChen",
author_email="[email protected]",
description="Image analysis of defects on solar modules, including automatic detection and power loss prediction",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hackingmaterials/pv-vision",
packages=find_packages(),
include_package_data=True,
python_requires='>=3.10',
install_requires=requirements,
license="BSD",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)