-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 967 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
from setuptools import setup
import pathlib
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS'
]
setup(
name ='pypolate',
version = '0.0.5',
description = 'A package for performing spatial interpolation with vector data',
long_description=README,
long_description_content_type = "text/markdown",
url = 'https://github.com/mikeRobWard/PyPolate',
author = 'Michael Ward & John Fitzgibbons',
author_email='michaelward94@gmail.com',
license='GPLv3+',
classifiers=classifiers,
keywords='spatial interpolation',
packages=['pypolate',],
install_requires=['geopandas', 'pandas'],
python_requires=">=3.7"
)