Skip to content

Commit

Permalink
added pyproject.toml and removed old setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-nour committed Jul 1, 2024
1 parent 068b130 commit 61028cf
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 35 deletions.
2 changes: 1 addition & 1 deletion geojson_shave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Ben Nour"""
__email__ = "hello@ben-nour.com"
__version__ = "0.1.2"
__version__ = "0.2.0"
35 changes: 35 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "geojson-shave"
description = "A command-line tool for reducing the size of GeoJSON files."
authors = [
{ name = "Ben Nour", email = "hello@ben-nour.com" }
]
version = "0.2.0"
dependencies = [
"alive-progress~=3.1.5",
"humanize~=4.9.0"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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 = ["geojson"]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"

[project.urls]
homepage = "https://github.com/ben-n93/geojson-shave"
repository = "https://github.com/ben-n93/geojson-shave"

[project.scripts]
geojson-shave = "geojson_shave.geojson_shave:main"
30 changes: 0 additions & 30 deletions setup.cfg

This file was deleted.

4 changes: 0 additions & 4 deletions setup.py

This file was deleted.

0 comments on commit 61028cf

Please sign in to comment.