-
Notifications
You must be signed in to change notification settings - Fork 312
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.23 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "stockstats"
dynamic = ["version"]
description = "DataFrame with inline stock statistics support."
readme = {file = "README.md", content-type = "text/markdown"}
license = "BSD-3-Clause"
requires-python = ">=3.9"
authors = [
{name = "Cedric Zhuang", email = "jealous@163.com"},
]
keywords = ["stock", "statistics", "indicator"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Utilities",
]
dependencies = [
"numpy>=1.16.6",
"pandas>=0.24.2",
]
[project.urls]
Homepage = "https://github.com/jealous/stockstats"
[tool.setuptools]
py-modules = ["stockstats"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"