Skip to content
This repository has been archived by the owner on Dec 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #9 from philbarker/main
Browse files Browse the repository at this point in the history
enable install with pip from github
  • Loading branch information
tombaker committed Dec 20, 2020
2 parents b1d8951 + 01127c3 commit 29f3d95
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion csv2shex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Generate ShEx schemas from DC Application Profiles."""

from .csvshape import CSVShape, CSVTripleConstraint, CSVSchema
from .csvreader import csvreader
__version__ = "0.3.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["flit"]
requires = ["setuptools!=50.0","flit"]
build-backend = "flit.buildapi"

[tool.flit.metadata]
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from setuptools import setup

setup(name="csv2shex",
py_modules=["csv2shex"]
)

0 comments on commit 29f3d95

Please sign in to comment.