Skip to content

Commit

Permalink
fixes #116
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Sep 19, 2023
1 parent 9272c5c commit 85a57a8
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 81 deletions.
1 change: 1 addition & 0 deletions lodstorage/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__="0.4.12"
3 changes: 2 additions & 1 deletion lodstorage/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
@author: wf
'''
import lodstorage

class Version(object):
'''
Version handling for pyLoDStorage
'''
name="pylodstorage"
version='0.4.11'
version=lodstorage.__version__
date = '2020-09-10'
updated = '2023-03-28'
description='python List of Dict (Table) Storage library'
61 changes: 61 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "pyLodStorage"
authors = [
{name = "Wolfgang Fahl", email = "wf@bitplan.com"}
]
maintainers = [
{name = "Wolfgang Fahl", email = "wf@bitplan.com"}
]
readme = "README.md"
license= "Apache-2.0"
dependencies = [
"SPARQLWrapper~=1.8.5",
"PyYAML",
"pandas",
"matplotlib>=3.6.2",
"tabulate",
"numpy",
"jsonpickle==1.5.2",
"pylatexenc~=2.10",
"pygments",
"dicttoxml2"
]
requires-python = ">=3.7"
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dynamic = ["version", "description"]

[tool.hatch.version]
path = "lodstorage/__init__.py"

[project.urls]
Home = "https://github.com/WolfgangFahl/pyLodStorage"
Documentation = "http://wiki.bitplan.com/index.php/PyLoDStorage"
Source = "https://github.com/WolfgangFahl/pyLodStorage/blob/master/lodstorage/sql.py"
IssueTracker = "https://github.com/WolfgangFahl/pyLodStorage/issues"

[project.optional-dependencies]
test = [
"green",
]

[tool.hatch.build.targets.wheel]
only-include = ["lodstorage","sampledata"]

[tool.hatch.build.targets.wheel.sources]
"lodstorage" = "lodstorage"
"sampledata" = "sampledata"

[project.scripts]
sparqlquery = "lodstorage.querymain:mainSPARQL"
sqlquery = "lodstorage.querymain:mainSQL"
lodquery = "lodstorage.querymain:main"
26 changes: 0 additions & 26 deletions requirements.txt

This file was deleted.

54 changes: 0 additions & 54 deletions setup.py

This file was deleted.

0 comments on commit 85a57a8

Please sign in to comment.