Files
cantera/interfaces/python_sdist/setup.cfg.in
2023-04-25 18:14:19 -04:00

76 lines
2.4 KiB
INI

[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
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
packaging
python_requires @py_requires_ver_str@
packages =
cantera.data
cantera.examples
cantera.test
cantera.with_units
# 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 = *.pxd
cantera.data = *.*
cantera.examples = *.txt
cantera.test = *.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]
pandas = pandas
units = pint
[options.entry_points]
console_scripts =
ck2yaml = cantera.ck2yaml:script_entry_point
cti2yaml = cantera.cti2yaml:main
ctml2yaml = cantera.ctml2yaml:main
yaml2ck = cantera.yaml2ck:main