-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.46 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "somata"
description = "State-space Oscillator Modeling And Time-series Analysis"
authors = [
{name = "Mingjian He", email = "[email protected]"}
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
keywords = ["state-space", "oscillator", "time-series"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis"
]
requires-python = ">= 3.8"
dynamic = ["version", "dependencies"]
[tool.setuptools.dynamic]
version = {attr = "somata.utils.version.VERSION"}
dependencies = {file = [
"requirements/requirements-core.txt",
"requirements/requirements-build.txt"
]}
[tool.setuptools.package-data]
"somata.pac.stan" = ["*.stan"]
[project.urls]
Homepage = "https://github.com/mh105/somata"
Documentation = "https://github.com/mh105/somata/blob/main/README.md"
Repository = "https://github.com/mh105/somata"
Issues = "https://github.com/mh105/somata/issues"
Changelog = "https://github.com/mh105/somata/blob/main/RELEASE.md"