|
2 | 2 | requires = ["setuptools>=42", "wheel"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 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 | | -install_requires = [ |
31 | | - "requests" |
32 | | -] |
33 | | - |
34 | | -[tool.setuptools.scripts] |
35 | | -# If your package has command line scripts, define them here |
36 | | -# script_name = 'yourpackage.module:function' |
37 | | - |
38 | | -[tool.black] |
39 | | -line-length = 88 |
40 | | -target-version = ['py36', 'py37', 'py38', 'py39'] |
41 | | -include = '\.pyi?$' |
42 | | -exclude = ''' |
43 | | -/( |
44 | | - \.eggs |
45 | | - | \.git |
46 | | - | \.hg |
47 | | - | \.mypy_cache |
48 | | - | \.tox |
49 | | - | \.venv |
50 | | - | _build |
51 | | - | buck-out |
52 | | - | build |
53 | | - | dist |
54 | | -)/ |
55 | | -''' |
56 | | - |
57 | | -[tool.isort] |
58 | | -profile = "black" |
0 commit comments