-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add conda dir add toml and scripts dir update packaging and fix fl8 add find directive remove test remove typo add wildcard correct toml file update toml file remove namespace pkg add ip module and update flake8 repo correct file path typo
- Loading branch information
Showing
20 changed files
with
108 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
"""Package defining top-level application | ||
and entry points. | ||
""" | ||
|
||
|
||
def main(): | ||
"""Placeholder. | ||
""" | ||
print("TEST_VESUVIO_LAUNCH") |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
[build-system] | ||
requires = ["setuptools >= 65.0.0", | ||
"wheel", | ||
"versioningit",] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "mvesuvio" | ||
dynamic = ["version"] | ||
authors = [ | ||
{name = "The Mantid Project", email = "[email protected]"}, | ||
{name = "Guilherme Pereira", email = "[email protected]"}, | ||
{name = "More Credit", email = "[email protected]"}, | ||
] | ||
description = "Analyse Vesuvio instrument data" | ||
readme = "README.md" | ||
requires-python = "==3.8.*" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3.8", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering", | ||
] | ||
dependencies = [ | ||
"matplotlib", | ||
"iminuit", | ||
"h5py", | ||
"jacobi==0.4.2", | ||
] | ||
|
||
[project.optional-dependencies] | ||
tests_require = [ | ||
"coverage", | ||
"mock>=2.0", | ||
"pytest", | ||
] | ||
|
||
[project.urls] | ||
"Repository" = "https://github.com/mantidproject/vesuvio" | ||
"Bug Tracker" = "https://github.com/mantidproject/vesuvio/issues" | ||
|
||
[project.entry-points] | ||
console_scripts = { mvesuvio = "EVSVesuvio.scripts:main" } | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["EVSVesuvio*"] | ||
namespaces = false | ||
|
||
[tool.setuptools.package-data] | ||
"EVSVesuvio.vesuvio_analysis.ip_files" = ["*.OPJ", "*.par", "*.DAT", "*.DAT3", "*.DAT6", "*.txt"] | ||
|
||
[tool.pytest.ini_options] | ||
pythonpath = ["."] | ||
testpaths = ["EVSVesuvio/system_tests"] | ||
filterwarnings = ["error"] | ||
|
||
[tool.coverage.report] | ||
include = [ | ||
"*/EVSVesuvio/vesuvio_analysis/*", | ||
] | ||
|
||
omit = [ | ||
"*tests*", | ||
"*unpackaged*", | ||
] | ||
|
||
fail_under = 0 | ||
show_missing = true | ||
skip_empty = true | ||
|
||
[tool.versioningit.vcs] | ||
method = "git" | ||
default-tag = "0.0.0" | ||
|
||
[tool.versioningit.next-version] | ||
method = "minor" | ||
|
||
[tool.versioningit.format] | ||
distance = "{version}.dev{distance}" | ||
dirty = "{version}+uncommitted" | ||
distance-dirty = "{version}.dev{distance}+uncommitted" | ||
|
||
[tool.versioningit.write] | ||
file = "EVSVesuvio/__init__.py" |
This file was deleted.
Oops, something went wrong.
Empty file.
Oops, something went wrong.