Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
oeis/pyproject.toml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
45 lines (39 sloc)
1023 Bytes
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
| [build-system] | |
| requires = ["setuptools >= 61", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [tool.pytest.ini_options] | |
| markers = [ | |
| "slow: marks tests as slow (deselect with '-m \"not slow\"')", | |
| ] | |
| [project] | |
| name = "oeis" | |
| description = "Implementation of a few integer sequences from the OEIS." | |
| readme = "README.md" | |
| license = {text = "MIT License"} | |
| authors = [ | |
| {name = "Julien Palard", email = "julien@palard.fr"}, | |
| ] | |
| classifiers = [ | |
| "Development Status :: 5 - Production/Stable", | |
| "Intended Audience :: Developers", | |
| "License :: OSI Approved :: MIT License", | |
| "Natural Language :: English", | |
| "Programming Language :: Python :: 3", | |
| ] | |
| requires-python = ">= 3.7" | |
| dependencies = [ | |
| "matplotlib >= 3.1, <4", | |
| "sympy >= 1.2, <2", | |
| ] | |
| dynamic = ["version"] | |
| [project.urls] | |
| homepage = "https://github.com/JulienPalard/oeis" | |
| [project.scripts] | |
| oeis = "oeis:main" | |
| [tool.setuptools] | |
| py-modules = [ | |
| "oeis", | |
| ] | |
| include-package-data = false | |
| [tool.setuptools.dynamic.version] | |
| attr = "oeis.__version__" |