-
Notifications
You must be signed in to change notification settings - Fork 211
/
setup.cfg
39 lines (34 loc) · 849 Bytes
/
setup.cfg
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
[metadata]
name = pandarallel
description = An easy to use library to speed up computation (by parallelizing on multi CPUs) with pandas.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://nalepae.github.io/pandarallel
author = Manu NALEPA
author_email = [email protected]
license = BSD
license_file = LICENSE
version = 1.6.5
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
[options]
packages = find:
python_requires = >=3.7
install_requires =
dill >= 0.3.1
pandas >= 1
psutil
[options.packages.find]
exclude =
tests*
[options.extras_require]
dev =
numpy
pytest
pytest-cov
doc =
mkdocs-material