forked from EntilZha/PyFunctional
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.63 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
45
46
47
48
49
50
51
52
[tool.poetry]
name = "PyFunctional"
version = "1.4.3"
description = "Package for creating data pipelines with chain functional programming"
authors = ["Pedro Rodriguez <[email protected]>"]
maintainers = ["Pedro Rodriguez <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/EntilZha/PyFunctional"
repository = "https://github.com/EntilZha/PyFunctional"
documentation = "https://docs.pyfunctional.pedro.ai/en/master/"
keywords = ["functional", "pipeline", "collection", "chain", "linq", "parallel"]
license = "MIT"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
]
packages = [{ include = "functional" }]
[tool.poetry.dependencies]
python = "^3.8.0"
dill = ">=0.2.5"
tabulate = "<=1.0.0"
pandas = { version = "^1.0.3", optional = true }
[tool.poetry.extras]
all = ["pandas"]
[tool.poetry.dev-dependencies]
black = "^23.1"
pytest = "^7.3.1"
pylint = "^2.17.4"
pytest-cov = "^4.0.0"
coverage = "^7.2.5"
[tool.poetry.group.dev.dependencies]
mypy = "^1.1.1"
types-tabulate = "^0.9.0.3"
pandas-stubs = "^2.0.3.230814"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"