-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
54 lines (50 loc) · 2.33 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
53
54
# setup.py for iwfm package
# Classes, methods and functions to read, write and modify IWFM and IGSM files
# Copyright (C) 2018-2023 University of California
#-----------------------------------------------------------------------------
# This information is free; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This work is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# For a copy of the GNU General Public License, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#-----------------------------------------------------------------------------
from setuptools import setup, find_packages
VERSION = '0.0.1'
DESCRIPTION = 'IWFM Python package'
LONG_DESCRIPTION = 'Classes, methods and functions to read, write and modify IWFM files'
# Setting up
setup(
# the name must match the folder name
name="iwfm",
version=VERSION,
author="Charles Brush",
author_email="<[email protected]>",
license='GNU',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires= ['area', 'bs4', 'folium', 'fpdf', 'geocoder',
'geojson', 'geopandas', 'matplotlib', 'numpy', 'ogr', 'osmnx',
'pandas', 'pathlib', 'pillow', 'pngcanvas', 'pynmea', 'pypdf2',
'pyshp', 'python_dateutil', 'rasterio', 'requests', 'scipy',
'statistics', 'utm', 'xlrd'
# add any additional packages that need to be installed along with your package. Eg: 'qgis'
],
python_requires='~=3.8',
keywords=['python', 'first package', 'iwfm'],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Groundwater Modelers",
"Programming Language :: Python :: 3.8",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
)