-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 880 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 880 Bytes
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
[project]
name = "pandas_decimal"
description = "icy"
readme = "README.md"
license = {file="LICENCE"}
requires-python = ">=3.8"
authors = [
{ name = "Martin Durant", email = "mdurant@anaconda.com" },
]
maintainers = [
{ name = "Martin Durant", email = "mdurant@anaconda.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pandas"
]
version = "0.0.1"
[build-system]
requires = [
"setuptools >= 40.9.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["pandas_decimal"]