Skip to content

Commit

Permalink
Merge pull request natcap#395 from phargogh/task/update-maintainers
Browse files Browse the repository at this point in the history
Naming NatCap SW Team the maintainers
  • Loading branch information
dcdenu4 authored Jun 18, 2024
2 parents d0420d1 + bf2d3a5 commit 0622c75
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 21 deletions.
33 changes: 33 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
[project]
name = "pygeoprocessing"
description = "PyGeoprocessing: Geoprocessing routines for GIS"
requires-python = ">=3.6"
license = {file = "LICENSE.txt"}
maintainers = [
{name = "Natural Capital Project Software Team"}
]
keywords = ['gis', 'geoprocessing', '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'
]
# the version is provided dynamically by setuptools_scm
# `dependencies` and `optional-dependencies` are provided by setuptools
# using the corresponding setup args `install_requires` and `extras_require`
# `readme` is provided by setuptools using the corresponding setup arg `long_description`
dynamic = ["version", "dependencies", "optional-dependencies", "readme"]


[build-system]
# these are the minimum packages needed in order to execute the pygeoprocessing build.
# Setuptools, wheel are from pep508.
Expand Down
22 changes: 1 addition & 21 deletions setup.py
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

Expand All @@ -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',
Expand All @@ -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",
Expand Down

0 comments on commit 0622c75

Please sign in to comment.