|
| 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" |
0 commit comments