-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
62 lines (56 loc) · 1.43 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[metadata]
name = bpw_pde
version = attr:bpw_pde.__version__
description = Eponymous extensions to the Python pandas package.
description_file = README.md
long_description = file:README.md
long_description_content_type = text/markdown
author = Bryan Patrick Wood
author_email = bpw1621@gmail.com
url = https://github.com/bpw1621/bpw-pde
download_url = https://github.com/bpw1621/bpw-pde/archive/master.zip
project_urls =
Source = https://github.com/bpw1621/bpw-pde
Documentation = https://bpw-pde.readthedocs.io/en/latest/
Bug Tracker = https://github.com/bpw1621/bpw-pde/issues
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
keywords = 'pandas'
license = 'MIT'
[options]
zip_safe = False
include_package_data = True
package_dir = =src
packages = find:
install_requires =
missingno
pandas
sidetable
tqdm
setup_requires =
setuptools
wheel
[options.packages.find]
where = src
[bdist_wheel]
universal = true
[options.extras_require]
test =
coverage
pytest
doc =
sphinx
sphinx_rtd_theme
towncrier
[aliases]
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']