-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from pierre-24/fixups_and_upgrades
Fixups and upgrades
- Loading branch information
Showing
23 changed files
with
201 additions
and
280 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 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 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 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 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 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 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,51 @@ | ||
[project] | ||
name = "nachos" | ||
dynamic = ["version"] | ||
authors = [ | ||
{name = "Pierre Beaujean", email = "pierre.beaujean@unamur.be"}, | ||
] | ||
description = "NACHOS: numerical differentiation code" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
] | ||
dependencies = [ | ||
'pyyaml>=5.0', | ||
'h5py', | ||
'qcip-tools @ git+https://github.com/pierre-24/qcip_tools.git@v0.7.1', | ||
'prompt_toolkit==1.0.15', | ||
'pandas>=1.2', | ||
'scipy>=1.7', | ||
'numpy>=1.20' | ||
] | ||
|
||
|
||
[project.urls] | ||
documentation = "https://pierre-24.github.io/nachos/" | ||
repository = "https://github.com/pierre-24/nachos.git" | ||
|
||
[project.scripts] | ||
|
||
# keep that alphabetical | ||
nachos_make = 'nachos.make:main' | ||
nachos_prepare = 'nachos.prepare:main' | ||
nachos_cook = 'nachos.cook:main' | ||
nachos_bake = 'nachos.bake:main' | ||
nachos_shake = 'nachos.shake:main' | ||
nachos_analyze = 'nachos.analyze:main' | ||
nachos_peek = 'nachos.peek:main' | ||
|
||
[tool.setuptools] | ||
packages = ['nachos', 'nachos.core', 'nachos.qcip_tools_ext'] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "nachos.__version__"} |
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
Oops, something went wrong.