Files
cantera/interfaces/python_sdist/setup.cfg.in

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
2.3 KiB
INI
Raw Normal View History

[metadata]
name = Cantera
version = @cantera_version@
description = Cantera is an open-source suite of tools for problems involving chemical kinetics, thermodynamics, and transport processes.
long_description = file: README.rst
long_description_content_type = text/x-rst
license_files = LICENSE.txt
url = https://cantera.org
author = Cantera Developers
author_email = developers@cantera.org
keywords = chemistry physics
license = BSD 3-Clause License
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: C
Programming Language :: C++
Programming Language :: Cython
Programming Language :: Fortran
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
2022-11-15 16:37:59 -05:00
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Chemistry
Topic :: Scientific/Engineering :: Physics
project_urls =
Documentation = https://cantera.org/documentation
Funding = https://numfocus.org/donate-to-cantera
Source = https://github.com/Cantera/cantera
Tracker = https://github.com/Cantera/cantera/issues
[options]
zip_safe = False
include_package_data = True
install_requires =
numpy >= 1.12.0
ruamel.yaml >= 0.15.34
python_requires = >=@py_min_ver_str@
packages =
cantera
cantera.data
# These options include data in the sdist and wheel if the files are also listed in
# MANIFEST.in. Note that only files that are inside the "cantera" packages will be
# included in the wheel.
[options.package_data]
cantera.data = *.*, */*.*
cantera = *.pxd, test/*.txt, examples/*.txt
# These options exclude data from the wheel file but not from the sdist
[options.exclude_package_data]
cantera = *.cpp, *.h, *.pyx
[options.extras_require]
hdf5 = h5py
pandas = pandas
[options.entry_points]
console_scripts =
ck2yaml = cantera.ck2yaml:script_entry_point
cti2yaml = cantera.cti2yaml:main
ctml2yaml = cantera.ctml2yaml:main
yaml2ck = cantera.yaml2ck:main