Skip to content

Commit

Permalink
Attempt at fixing conda-forge complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
tberlok committed Apr 10, 2024
1 parent 6eefeeb commit 6e71d60
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
global-include *.pyx
global-exclude *.c
include requirements.txt
include dev_requirements.txt
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
project = 'Paicos'
copyright = '2024, Thomas Berlok'
author = 'Thomas Berlok'
release = '0.1.9'
release = '0.1.10'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion paicos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
and a CUDA GPU implementation for visualization.
"""

__version__ = "0.1.9"
__version__ = "0.1.10"
__author__ = 'Thomas Berlok'
__credits__ = 'Niels Bohr Institute, University of Copenhagen'

Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@ requires = ["cython>=0.29.21",
"numpy>=1.20",
"setuptools",
"wheel"]

dynamic = ["dependencies", "optional-dependencies"]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

[tool.setuptools.dynamic.optional-dependencies]
dev = {file = ["dev_requirements.txt"]}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

setup(
name='paicos',
version='0.1.9',
version='0.1.10',
description=('An object-oriented Python package for analysis of '
+ '(cosmological) simulations performed with Arepo.'),
url='https://github.com/tberlok/paicos',
Expand Down

0 comments on commit 6e71d60

Please sign in to comment.