Commit 8ab166ad authored by Mark Canterbury's avatar Mark Canterbury
Browse files

Removing CI/CD and fixing flit config

parent bd86be1f
Loading
Loading
Loading
Loading

.gitlab-ci.yml

deleted100644 → 0
+0 −7
Original line number Original line Diff line number Diff line
stages:          # List of stages for jobs, and their order of execution
  - test

pytest-job:   # This job runs in the test stage.
  stage: test    # It only starts when the job in the build stage completes successfully.
  script:
    - echo "Not doing anything just yet"
 No newline at end of file
+2 −2
Original line number Original line Diff line number Diff line
[build-system]
[build-system]
requires = ["flit_core >=3.2,<4",
requires = ["flit_core >=3.2,<4"]
            "xmlschema >= 2.0.0"]
build-backend = "flit_core.buildapi"
build-backend = "flit_core.buildapi"


[project]
[project]
@@ -9,6 +8,7 @@ authors = [{name = "Mark Canterbury", email = "markc@tencastle.com"}]
license = {file = "LICENSE"}
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
dynamic = ["version", "description"]
dependencies = ["xmlschema >= 2"]


[project.scripts]
[project.scripts]
xmltest = "xmltest:xmltest_console"
xmltest = "xmltest:xmltest_console"
+1 −1
Original line number Original line Diff line number Diff line
"""XMLTest XML validation helper"""
"""XMLTest XML validation helper"""


__version__ = "0.0.1"
__version__ = "0.1a3"


from typing import Sequence
from typing import Sequence
from argparse import ArgumentParser
from argparse import ArgumentParser