-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·51 lines (49 loc) · 1.46 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="photo_grid",
version="1.3.13",
description="A GUI for field segmentation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Poissonfish/GRID",
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
],
author="James Chen",
author_email="niche@vt.edu",
license="GPLv3",
packages=["grid", "grid.gui"],
include_package_data=True,
install_requires=[
"numpy",
"pandas>=0.19.2",
# data processing
"h5py",
"pyshp",
# math, models
"scikit-learn",
"scipy",
"matplotlib",
# image processing
"image",
"opencv-python",
"rasterio",
# GUI
"PyQt6",
"qdarkstyle",
# misc
"tqdm",
],
entry_points={"console_scripts": ["GRID=grid.__main__:main"]},
)