-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.cfg
126 lines (114 loc) · 2.65 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[bumpversion]
current_version = 4.0.2
commit = True
tag = False
message = '{current_version} → {new_version}'
[metadata]
name = pygaps
version = 4.0.2
description = A framework for processing adsorption data for porous materials.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = adsorption, characterization, porous materials, isotherms
author = Paul Iacomi
author_email = [email protected]
license = MIT license
license_files = LICENSE
url = https://github.com/pauliacomi/pygaps
project_urls =
Documentation = https://pygaps.readthedocs.io
Source Code = https://github.com/pauliacomi/pygaps
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Operating System :: Unix
Operating System :: POSIX
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Physics
Topic :: Scientific/Engineering :: Chemistry
[options]
package_dir =
=src
packages = find:
python_requires = >=3.7
zip_safe = True
include_package_data = True
tests_require =
pytest
pytest-cov
coverage[toml]
nose
install_requires =
numpy >= 1.16.5
scipy >= 1.6
pandas
matplotlib
coolprop >= 6.0
xlrd >= 1.1
xlwt >= 1.3
openpyxl
gemmi
requests
importlib_resources; python_version < "3.9"
[options.packages.find]
where = src
[options.package_data]
* = *.txt, *.rst
pygaps.data = *
pygaps.data.kernels = *.csv
[options.entry_points]
console_scripts =
pygaps = pygaps.cli:main
[options.extras_require]
dev =
yapf
isort
pylint
flake8
autopep8
pydocstyle
bump2version
pygments
docutils
docs =
pygments >= 2.11
docutils >= 0.11
doc8
pandoc
restructuredtext-lint
ipykernel
sphinx >= 4.0
sphinx-copybutton
nbsphinx
furo
[bumpversion:file:setup.cfg]
search = version = {current_version}
replace = version = {new_version}
[bumpversion:file:pyproject.toml]
search = fallback_version = '{current_version}'
replace = fallback_version = '{new_version}'
[bumpversion:file:src/pygaps/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bumpversion:file:conda_recipe/meta.yaml]
search = version = "{current_version}"
replace = version = "{new_version}"
[flake8]
ignore =
E402
W503
W504
E126
max-line-length = 140
exclude = .tox,.eggs,ci/templates,build,dist
docstring_style = numpy
[darglint]
docstring_style = numpy