forked from natcap/pygeoprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request natcap#395 from phargogh/task/update-maintainers
Naming NatCap SW Team the maintainers
- Loading branch information
Showing
2 changed files
with
34 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
"""setup.py module for PyGeoprocessing.""" | ||
import platform | ||
|
||
from Cython.Build import cythonize | ||
import numpy | ||
from Cython.Build import cythonize | ||
from setuptools import setup | ||
from setuptools.extension import Extension | ||
|
||
|
@@ -28,8 +28,6 @@ | |
description="PyGeoprocessing: Geoprocessing routines for GIS", | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type='text/x-rst', | ||
maintainer='James Douglass', | ||
maintainer_email='[email protected]', | ||
url='https://github.com/natcap/pygeoprocessing', | ||
packages=[ | ||
'pygeoprocessing', | ||
|
@@ -44,24 +42,6 @@ | |
install_requires=_REQUIREMENTS, | ||
license='BSD', | ||
zip_safe=False, | ||
keywords='gis pygeoprocessing', | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Science/Research', | ||
'Natural Language :: English', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: Microsoft', | ||
'Operating System :: POSIX', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
'Topic :: Scientific/Engineering :: GIS', | ||
'License :: OSI Approved :: BSD License' | ||
], | ||
ext_modules=cythonize([ | ||
Extension( | ||
name="pygeoprocessing.routing.routing", | ||
|