-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 2.39 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "elephant"
dynamic = ["version", "dependencies", "optional-dependencies"]
description = "Elephant (Electrophysiology Analysis Toolkit) is an open-source library for the analysis of electrophysiological data in Python."
license = "BSD-3-Clause"
license-files = [ "LICENSE.txt"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English", "Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering"]
keywords = ["neuroscience", "neurophysiology", "electrophysiology", "statistics", "data-analysis"]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9"
[tool.setuptools.dynamic]
version = {file = "elephant/VERSION"}
dependencies = {file = "requirements/requirements.txt"}
optional-dependencies.docs = {file = "requirements/requirements-docs.txt"}
optional-dependencies.extras = {file = "requirements/requirements-extras.txt"}
optional-dependencies.opencl = {file = "requirements/requirements-opencl.txt"}
optional-dependencies.cuda = {file = "requirements/requirements-cuda.txt"}
optional-dependencies.tests = {file = "requirements/requirements-tests.txt"}
optional-dependencies.tutorials = {file = "requirements/requirements-tutorials.txt"}
# Include source files; uses a flat layout
[tool.setuptools.packages.find]
where = ["."]
include = ["elephant*"]
# Include package data as per MANIFEST.in
[tool.setuptools]
include-package-data = true
[project.urls]
Homepage = "http://python-elephant.org"
Documentation = "https://elephant.readthedocs.io/en/latest/"
Repository = "https://github.com/NeuralEnsemble/elephant"
Issues = "https://github.com/NeuralEnsemble/elephant/issues"
Changelog = "https://github.com/NeuralEnsemble/elephant/releases"
# This file was created following this guide:
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#writing-pyproject-toml