Skip to content

Commit

Permalink
Merge pull request #243 from eikesr/update-other-py
Browse files Browse the repository at this point in the history
Move other py parts to hatchling; update generator version used
  • Loading branch information
eikesr authored Jun 17, 2024
2 parents ce73c93 + a4d0a16 commit 2df1b1e
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 42 deletions.
45 changes: 41 additions & 4 deletions flatdata-py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,43 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "flatdata-py"
version = "0.4.7"
description = "Python 3 implementation of Flatdata"
readme = "README.md"
license = ""
authors = [
{ name = "Flatdata Developers" },
]
build-backend = "setuptools.build_meta"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"flatdata-generator==0.4.6",
"numpy",
"pandas",
]

[project.optional-dependencies]
inspector = [
"IPython",
]

[project.scripts]
flatdata-inspector = "flatdata.lib.inspector:main[inspector]"
flatdata-writer = "flatdata.lib.writer:main[writer]"

[project.urls]
Homepage = "https://github.com/heremaps/flatdata"

[tool.hatch.build.targets.sdist]
include = [
"/flatdata",
]

[tool.hatch.build.targets.wheel]
packages = ["flatdata"]
2 changes: 1 addition & 1 deletion flatdata-py/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
flatdata-generator==0.4.5
flatdata-generator==0.4.6
numpy
pandas
37 changes: 0 additions & 37 deletions flatdata-py/setup.py

This file was deleted.

0 comments on commit 2df1b1e

Please sign in to comment.