-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (31 loc) · 1013 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pandas_shortcuts"
description = "Why even wait for autocompletion when you can use `pandas_shortcuts`?"
requires-python = ">=3.6"
authors = [
{name = "BaoGiang HoangVu", email = "[email protected]"},
{name = "lpun-majessica", email = "[email protected]"},
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["shortcut", "pandas"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = [
"version",
"dependencies"
]
[project.urls]
"Bug Reports" = "https://github.com/baogianghoangvu/pandas-shortcuts/issues"
Source = "https://github.com/baogianghoangvu/pandas-shortcuts"
[tool.setuptools.dynamic]
version = {attr = "pandas_shortcuts.__version__"}
dependencies = {file = "requirements.txt"}