Skip to content

Commit

Permalink
updated version number and added comment about version number
Browse files Browse the repository at this point in the history
  • Loading branch information
CraigYanitski committed Nov 7, 2023
1 parent 38c525b commit 8a3b5c4
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 39 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ build:
@pip install --upgrade build
@python -m build

# Ensure you update first the version number in `setup.py`,
# `pyproject.py`, and `docs/_source/conf.py`
upload: build
@twine upload --repository pypi dist/*
@rm -rf dist
Expand Down
82 changes: 43 additions & 39 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,43 +1,47 @@
from setuptools import setup, find_packages

with open('README.md', 'r') as f:
long_description = f.read()
with open("README.md", "r") as f:
long_description = f.read()

setup(name = 'kosmatau3d',
version = '1.0.6',
description = 'package for the subgrid modelling of photo-dissociation regions using KOSMA-tau',
url = 'https://git.ph1.uni-koeln.de/yanitski/kosma-tau-3d',
author = 'C.N. Yanitski',
author_email = '[email protected]',
long_description = long_description,
long_description_content_type = "text/markdown",
classifiers = ["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages = find_packages(exclude=('docs','graphics','history','tests')),
# external packages as dependencies
# dependency_links = ['https://github.com/skabanovic/astrokit'],
install_requires = [#'astrokit @ git+https://github.com/skabanovic/astrokit.git',
'astropy',
'cygrid',
'dill',
'jupyter-book',
'jupyterlab',
'matplotlib',
'numba>=0.49.1',
'numpy',
'pandas',
# 'pyqt5',
'scikit-learn',
'scipy',
'spectres',
'sphinx',
'sphinx-autoapi',
'sympy',
'tqdm',
],
include_package_data = True,
package_data = {'': ['grid/*.dat', 'input/*/*.dat', 'molecular_data/*', 'preamble/*']},
python_requires = ">=3.6"
setup(
name="kosmatau3d",
version="1.0.7",
description="package for the subgrid modelling of photo-dissociation regions using KOSMA-tau",
url="https://git.ph1.uni-koeln.de/yanitski/kosma-tau-3d",
author="C.N. Yanitski",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(exclude=("docs", "graphics", "history", "tests")),
# external packages as dependencies
# dependency_links = ['https://github.com/skabanovic/astrokit'],
install_requires=[ #'astrokit @ git+https://github.com/skabanovic/astrokit.git',
"astropy",
"cygrid",
"dill",
"jupyter-book",
"jupyterlab",
"matplotlib",
"numba>=0.49.1",
"numpy",
"pandas",
# 'pyqt5',
"scikit-learn",
"scipy",
"spectres",
"sphinx",
"sphinx-autoapi",
"sympy",
"tqdm",
],
include_package_data=True,
package_data={
"": ["grid/*.dat", "input/*/*.dat", "molecular_data/*", "preamble/*"]
},
python_requires=">=3.6",
)

0 comments on commit 8a3b5c4

Please sign in to comment.