-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: implement pyproject.toml, flake8 suggestions (#26)
* style: linter issues from pylance and flake * chore: pyproject.toml
- Loading branch information
Showing
19 changed files
with
375 additions
and
238 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[project] | ||
name = "thunor" | ||
dynamic = ["version", "dependencies"] | ||
description = "Dose response curve and drug induced proliferation (DIP) rate fits and visualisation" | ||
authors = [ | ||
{name = "Alex Lubbock", email = "[email protected]"}, | ||
] | ||
requires-python = ">=3.10" | ||
readme = "README.md" | ||
license = {text = "GPL-3.0-only"} | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Topic :: Scientific/Engineering :: Chemistry", | ||
"Topic :: Scientific/Engineering :: Medical Science Apps.", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://www.thunor.net" | ||
|
||
[build-system] | ||
requires = ["setuptools", "versioneer-518"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.pytest] | ||
norecursedirs = "doc/_build" | ||
|
||
[tool.flake8] | ||
extend-ignore = "E203" | ||
max-line-length = 88 |
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 |
---|---|---|
|
@@ -19,7 +19,8 @@ def main(): | |
author_email='[email protected]', | ||
url='https://www.thunor.net', | ||
packages=['thunor', 'thunor.converters'], | ||
install_requires=['numpy', 'scipy', 'pandas', 'plotly', 'seaborn', 'tables'], | ||
install_requires=['numpy', 'scipy', 'pandas', 'plotly', 'seaborn', | ||
'tables'], | ||
tests_require=['pytest', 'nbval', 'django', 'nbformat'], | ||
cmdclass=versioneer.get_cmdclass(), | ||
zip_safe=True, | ||
|
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
Oops, something went wrong.