-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 954 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
from setuptools import setup, find_packages
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
setup(
name = 'ipdw',
version = '1.0.1',
license = 'MIT',
description = 'Inverse-Path-Distance-Weighted Interpolation for Python',
long_description=LONG_DESCRIPTION,
long_description_content_type = 'text/markdown',
author = 'Kyle Wright',
author_email = 'Kyle.Wright@twdb.texas.gov',
url = 'https://github.com/wrightky/ipdw',
packages = find_packages(),
keywords='interpolation ipdw idw',
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: GIS'
],
install_requires = ['numpy','matplotlib','scikit-fmm'],
)