Skip to content

Commit 4b2f144

Browse files
committed
0.1.0
1 parent b1b004d commit 4b2f144

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed

pyproject.toml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
[build-system]
2+
requires = ["setuptools>=42", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[tool.setuptools]
6+
name = "GISAPI-SDK"
7+
version = "0.1.0"
8+
description = "GISAPI SDK enabling geospatial data search and discovery"
9+
long_description = "file: README.md"
10+
long_description_content_type = "text/markdown"
11+
url = "https://github.com/OmniverseXYZ/gisapi-sdk-python"
12+
author = "Parker Dinkins"
13+
author_email = "parkerdinkins@gmail.com"
14+
license='GNU General Public License v3 (GPLv3)',
15+
classifiers=[
16+
'Development Status :: 3 - Alpha',
17+
'Intended Audience :: Developers',
18+
'Topic :: Software Development :: Build Tools',
19+
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
20+
'Programming Language :: Python :: 3',
21+
'Programming Language :: Python :: 3.6',
22+
'Programming Language :: Python :: 3.7',
23+
'Programming Language :: Python :: 3.8',
24+
'Programming Language :: Python :: 3.9',
25+
'Programming Language :: Python :: 3.10',
26+
'Programming Language :: Python :: 3.11',
27+
'Programming Language :: Python :: 3.12',
28+
],
29+
keywords = "gis api sdk"
30+
packages = find:
31+
install_requires = [
32+
"requests"
33+
]
34+
35+
[tool.setuptools.scripts]
36+
# If your package has command line scripts, define them here
37+
# script_name = 'yourpackage.module:function'
38+
39+
[tool.black]
40+
line-length = 88
41+
target-version = ['py36', 'py37', 'py38', 'py39']
42+
include = '\.pyi?$'
43+
exclude = '''
44+
/(
45+
\.eggs
46+
| \.git
47+
| \.hg
48+
| \.mypy_cache
49+
| \.tox
50+
| \.venv
51+
| _build
52+
| buck-out
53+
| build
54+
| dist
55+
)/
56+
'''
57+
58+
[tool.isort]
59+
profile = "black"

setup.py

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='GISAPI-SDK',
5+
version='0.1.0',
6+
author='Parker Dinkins',
7+
author_email='parkerdinkins@gmail.com',
8+
description='GISAPI SDK enabling geospatial data search and discovery',
9+
long_description=open('README.md').read(),
10+
long_description_content_type='text/markdown',
11+
url='https://github.com/OmniverseXYZ/gisapi-sdk-python',
12+
license='GNU General Public License v3 (GPLv3)',
13+
classifiers=[
14+
'Development Status :: 3 - Alpha',
15+
'Intended Audience :: Developers',
16+
'Topic :: Software Development :: Build Tools',
17+
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
18+
'Programming Language :: Python :: 3',
19+
'Programming Language :: Python :: 3.6',
20+
'Programming Language :: Python :: 3.7',
21+
'Programming Language :: Python :: 3.8',
22+
'Programming Language :: Python :: 3.9',
23+
'Programming Language :: Python :: 3.10',
24+
'Programming Language :: Python :: 3.11',
25+
'Programming Language :: Python :: 3.12',
26+
],
27+
keywords='gis api sdk',
28+
packages=find_packages(),
29+
install_requires=[
30+
'requests',
31+
],
32+
python_requires='>=3.6',
33+
)
34+

0 commit comments

Comments
 (0)