-
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.
build: restructure requirements (#40)
* build: restructure requirements remove requirements.txt files and replace with structured requirements in setup.py, with extras_require for 'test' and 'docs'. set minimum python version to 3.10. * ci: fix ci to install package properly * fix: add ipykernel to docs requirements
- Loading branch information
Showing
5 changed files
with
12 additions
and
28 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -19,9 +19,14 @@ def main(): | |
author_email='[email protected]', | ||
url='https://www.thunor.net', | ||
packages=['thunor', 'thunor.converters'], | ||
python_requires='>=3.10', | ||
install_requires=['numpy', 'scipy', 'pandas', 'plotly', 'seaborn', | ||
'tables'], | ||
tests_require=['pytest', 'nbval', 'django', 'nbformat'], | ||
extras_require={ | ||
'test': ['pytest', 'nbval', 'django', 'nbformat'], | ||
'docs': ['sphinx<8', 'sphinx-rtd-theme', 'mock', 'nbsphinx', | ||
'ipykernel'], | ||
}, | ||
cmdclass=versioneer.get_cmdclass(), | ||
zip_safe=True, | ||
classifiers=[ | ||
|