-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 868 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
30
31
32
33
34
35
# -*- coding: utf-8 -*-
# @author: Shenzhou Liu
# @email: [email protected]
# @copyright: © 2024 Shenzhou Liu. All rights reserved.
from setuptools import setup, find_packages
setup(
name='cropmaster',
version='0.0.2',
author='Shenzhou Liu',
author_email='[email protected]',
description='A brief description of your package',
packages=find_packages(), # 自动发现和包含所有的包
install_requires=[ # 任何你的包所依赖的第三方库
'numpy',
'pandas',
'tqdm',
'rasterio',
'fiona',
'pycocotools',
'prettytable',
'geopandas',
'sentinelhub[AWS] >= 3.10',
'shapely ==1.8.5',
'fiona==1.9.4',
'scipy',
'scikit-image',
],
extras_require={
'dev': [
'pytest>=3.7',
],
},
)