-
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.
* remove dev * remove placement-algo dep * Chore: Bump Copier template * Fix: Lint and doc * fix dep * Test: Check diff-pdf-visually outputs * Fix: Lint --------- Co-authored-by: Adrien Berchet <[email protected]>
- Loading branch information
1 parent
5c55d69
commit c13f103
Showing
26 changed files
with
120 additions
and
232 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
[codespell] | ||
skip = .git/* | ||
skip = .git/*,*.pdf | ||
ignore-words-list = INH |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Changes here will be overwritten by Copier | ||
|
||
_commit: 0.1.65 | ||
_commit: 0.1.67 | ||
_src_path: [email protected]:neuromath/python-template.git | ||
author_email: '' | ||
author_name: Blue Brain Project, EPFL | ||
|
@@ -9,11 +9,11 @@ copyright_year: '2022' | |
distribution_name: synthesis-workflow | ||
download_url: https://github.com/BlueBrain/synthesis-workflow | ||
init_git: false | ||
maintainer: Adrien Berchet | ||
maintainer: Adrien Berchet (@adrien-berchet) | ||
package_name: synthesis_workflow | ||
project_description: Workflow used for synthesis and its validation. | ||
project_name: Synthesis Workflow | ||
project_url: https://synthesis_workflow.readthedocs.io | ||
project_url: https://synthesis-workflow.readthedocs.io | ||
repository_name: synthesis-workflow | ||
repository_namespace: BlueBrain | ||
repository_provider: github | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Maintainer | ||
|
||
Adrien Berchet | ||
Adrien Berchet (@adrien-berchet) | ||
|
||
# Contributors |
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 @@ | ||
.. mdinclude:: ../../CONTRIBUTING.md |
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 |
---|---|---|
|
@@ -50,3 +50,4 @@ The :doc:`./api_ref` page contains detailed documentation of: | |
cli | ||
api_ref | ||
changelog | ||
contributing |
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 |
---|---|---|
@@ -1,19 +1,10 @@ | ||
"""Setup for the synthesis-workflow package.""" | ||
|
||
import importlib | ||
from pathlib import Path | ||
|
||
from setuptools import find_namespace_packages | ||
from setuptools import setup | ||
|
||
spec = importlib.util.spec_from_file_location( | ||
"src.version", | ||
"src/version.py", | ||
) | ||
module = importlib.util.module_from_spec(spec) | ||
spec.loader.exec_module(module) | ||
VERSION = module.VERSION | ||
|
||
# Read the requirements | ||
with open("requirements/base.pip", "r", encoding="utf-8") as f: | ||
reqs = f.read().splitlines() | ||
|
@@ -28,21 +19,23 @@ | |
|
||
setup( | ||
name="synthesis-workflow", | ||
author="bbp-ou-cells", | ||
author_email="[email protected]", | ||
author="Blue Brain Project, EPFL", | ||
description="Workflow used for synthesis and its validation.", | ||
long_description=Path("README.rst").read_text(encoding="utf-8"), | ||
long_description_content_type="text/x-rst", | ||
url="https://bbpteam.epfl.ch/documentation/projects/synthesis-workflow", | ||
url="https://synthesis-workflow.readthedocs.io", | ||
project_urls={ | ||
"Tracker": "https://bbpteam.epfl.ch/project/issues/projects/CELLS/issues", | ||
"Source": "https://bbpgitlab.epfl.ch/neuromath/synthesis-workflow", | ||
"Tracker": "https://github.com/BlueBrain/synthesis-workflow/issues", | ||
"Source": "https://github.com/BlueBrain/synthesis-workflow", | ||
}, | ||
license="BBP-internal-confidential", | ||
license="Apache License 2.0", | ||
packages=find_namespace_packages("src"), | ||
package_dir={"": "src"}, | ||
python_requires=">=3.9", | ||
version=VERSION, | ||
use_scm_version=True, | ||
setup_requires=[ | ||
"setuptools_scm", | ||
], | ||
install_requires=reqs, | ||
extras_require={ | ||
"docs": doc_reqs, | ||
|
@@ -56,6 +49,7 @@ | |
}, | ||
include_package_data=True, | ||
classifiers=[ | ||
# TODO: Update to relevant classifiers | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Science/Research", | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.