-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 952 Bytes
/
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
[build-system]
requires = [
"setuptools>=42",
"pandas>=1.2.0",
"intervaltree==3.1.0",
"psutil>=5.9.0"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pandance"]
[project]
name = "pandance"
version = "0.3.0"
authors = [
{ name="Filip Buric" }
]
maintainers = [
{ name="Filip Buric" }
]
description = "Advanced relational operations for pandas DataFrames"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Database",
"Topic :: Scientific/Engineering ",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://pandance.readthedocs.io"
"Documentation" = "https://pandance.readthedocs.io"
"Source Code" = "https://github.com/fburic/pandance"