-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
144 additions
and
77 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
description = "pyrcel: 0D adiabatic cloud parcel model" | ||
name = "pyrcel" | ||
authors = [ | ||
{ name = "Daniel Rothenberg", email = "[email protected]" }, | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = { file = "LICENSE.md" } | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
"Operating System :: Unix", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Scientific/Engineering :: Atmospheric Science", | ||
] | ||
dependencies = [ | ||
"numba", | ||
"numpy", | ||
"pandas", | ||
"pyyaml", | ||
"scipy", | ||
"setuptools", | ||
"setuptools-scm", | ||
"xarray", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Documentation = "https://pyrcel.readthedocs.io/en/latest/" | ||
Repository = "https://github.com/darothen/pyrcel" | ||
|
||
[tools.setuptools] | ||
packages = ["pyrcel"] | ||
|
||
[tool.setuptools.packages] | ||
find = {namespaces = false} | ||
|
||
[project.scripts] | ||
run_parcel = "pyrcel.scripts.run_parcel:run_parcel" | ||
|
||
[tool.setuptools_scm] | ||
version_file = "pyrcel/version.py" |
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
Empty file.
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 |
---|---|---|
|
@@ -41,51 +41,51 @@ def _write_version_file(): | |
|
||
|
||
# Write version and install | ||
_write_version_file() | ||
# _write_version_file() | ||
|
||
setup( | ||
name="pyrcel", | ||
author="Daniel Rothenberg", | ||
author_email="[email protected]", | ||
maintainer="Daniel Rothenberg", | ||
maintainer_email="[email protected]", | ||
description="pyrcel: 0D adiabatic cloud parcel model", | ||
long_description=""" | ||
This code implements a relatively simple, adiabatic cloud parcel model for studying aerosol | ||
activation. It allows the user to peform and iterate parcel model experiments in a simple | ||
fashion through the use of an object-oriented implementation. Furthermore, interfaces for | ||
several numerical solvers are built into the model so that users can choose whatever scheme | ||
they would like to run with the model. | ||
""", | ||
license="New BSD (3-clause)", | ||
url="https://github.com/darothen/pyrcel", | ||
version=VERSION, | ||
download_url="https://github.com/darothen/pyrcel", | ||
# TODO: Update install requirements and corresponding documentation | ||
install_requires=[ | ||
"numba", | ||
"numpy", | ||
"pandas", | ||
"pyyaml", | ||
"scipy", | ||
"setuptools", | ||
"xarray", | ||
], | ||
packages=["pyrcel"], | ||
package_data={"pyrcel": ["data/std_atm.csv"]}, | ||
scripts=["scripts/run_parcel"], | ||
ext_modules=extensions, | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
"Operating System :: Unix", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Scientific/Engineering :: Atmospheric Science", | ||
], | ||
# name="pyrcel", | ||
# author="Daniel Rothenberg", | ||
# author_email="[email protected]", | ||
# maintainer="Daniel Rothenberg", | ||
# maintainer_email="[email protected]", | ||
# description="pyrcel: 0D adiabatic cloud parcel model", | ||
# long_description=""" | ||
# This code implements a relatively simple, adiabatic cloud parcel model for studying aerosol | ||
# activation. It allows the user to peform and iterate parcel model experiments in a simple | ||
# fashion through the use of an object-oriented implementation. Furthermore, interfaces for | ||
# several numerical solvers are built into the model so that users can choose whatever scheme | ||
# they would like to run with the model. | ||
# """, | ||
# license="New BSD (3-clause)", | ||
# url="https://github.com/darothen/pyrcel", | ||
# version=VERSION, | ||
# download_url="https://github.com/darothen/pyrcel", | ||
# # TODO: Update install requirements and corresponding documentation | ||
# install_requires=[ | ||
# "numba", | ||
# "numpy", | ||
# "pandas", | ||
# "pyyaml", | ||
# "scipy", | ||
# "setuptools", | ||
# "xarray", | ||
# ], | ||
# packages=["pyrcel"], | ||
# package_data={"pyrcel": ["data/std_atm.csv"]}, | ||
# scripts=["scripts/run_parcel"], | ||
# ext_modules=extensions, | ||
# classifiers=[ | ||
# "Development Status :: 5 - Production/Stable", | ||
# "Environment :: Console", | ||
# "Intended Audience :: Science/Research", | ||
# "License :: OSI Approved :: BSD License", | ||
# "Natural Language :: English", | ||
# "Operating System :: Unix", | ||
# "Programming Language :: Python :: 3.8", | ||
# "Programming Language :: Python :: 3.9", | ||
# "Programming Language :: Python :: 3.10", | ||
# "Programming Language :: Python :: 3.11", | ||
# "Topic :: Scientific/Engineering :: Atmospheric Science", | ||
# ], | ||
) |