Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pdinkins committed Nov 27, 2023
1 parent b1b004d commit 4b2f144
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 0 deletions.
59 changes: 59 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
name = "GISAPI-SDK"
version = "0.1.0"
description = "GISAPI SDK enabling geospatial data search and discovery"
long_description = "file: README.md"
long_description_content_type = "text/markdown"
url = "https://github.com/OmniverseXYZ/gisapi-sdk-python"
author = "Parker Dinkins"
author_email = "[email protected]"
license='GNU General Public License v3 (GPLv3)',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'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',
],
keywords = "gis api sdk"
packages = find:
install_requires = [
"requests"
]

[tool.setuptools.scripts]
# If your package has command line scripts, define them here
# script_name = 'yourpackage.module:function'

[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''

[tool.isort]
profile = "black"
34 changes: 34 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from setuptools import setup, find_packages

setup(
name='GISAPI-SDK',
version='0.1.0',
author='Parker Dinkins',
author_email='[email protected]',
description='GISAPI SDK enabling geospatial data search and discovery',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/OmniverseXYZ/gisapi-sdk-python',
license='GNU General Public License v3 (GPLv3)',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'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',
],
keywords='gis api sdk',
packages=find_packages(),
install_requires=[
'requests',
],
python_requires='>=3.6',
)

0 comments on commit 4b2f144

Please sign in to comment.