-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
77 lines (73 loc) · 2.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Copyright (c) 2019 University of Illinois and others. All rights reserved.
#
# This program and the accompanying materials are made available under the
# terms of the Mozilla Public License v2.0 which accompanies this distribution,
# and is available at https://www.mozilla.org/en-US/MPL/2.0/
from setuptools import setup, find_packages
# version number of pyincore
version = "1.11.0"
with open("README.rst", encoding="utf-8") as f:
readme = f.read()
setup(
name="pyincore_viz",
version=version,
description="IN-CORE visualization python package",
long_description=readme,
long_description_content_type="text/x-rst",
url="https://incore.ncsa.illinois.edu",
license="Mozilla Public License v2.0",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
keywords=[
"infrastructure",
"resilience",
"hazards",
"data discovery",
"IN-CORE",
"earthquake",
"tsunami",
"tornado",
"hurricane",
"dislocation",
],
packages=find_packages(
where=".", exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
include_package_data=True,
package_data={"": ["*.ini"]},
install_requires=[
"branca>=0.3.0",
"contextily>=1.0.0",
"deprecated",
"geopandas>=0.14.0",
"ipyleaflet>=0.16.0",
"ipywidgets>=7.6.0",
"lxml>=4.6.3",
"matplotlib>=3.8.3",
"networkx>=3.2.1",
"numpy>=1.26.0,<2.0a0",
"owslib>=0.17.1",
"pandas>=2.1.2",
"pillow",
"pyincore>=1.11.0",
"rasterio>=1.3.9",
],
extras_require={
"test": [
"pycodestyle>=2.6.0",
"pytest>=3.9.0",
"python-jose>=3.0",
]
},
project_urls={
"Bug Reports": "https://github.com/IN-CORE/pyincor-vize/issues",
"Source": "https://github.com/IN-CORE/pyincor-vize",
},
)