-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.cfg
62 lines (55 loc) · 1.38 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={{ cookiecutter.python_package_name }}
author={{ cookiecutter.author_name }}
author_email={{ cookiecutter.author_email }}
url = https://github.com/{{ cookiecutter.github_organization_name }}/{{ cookiecutter.github_project_name }}
license=BSD 3-Clause
long_description = file: README.md
long_description_content_type = text/markdown
[options]
packages = find:
install_requires =
matplotlib
classifiers =
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Framework :: Matplotlib
[options.extras_require]
test =
black
pytest
pytest-mpl
doc =
sphinx
numpydoc
sphinx_rtd_theme
sphinx-copybutton
sphinx-autobuild
sphinx_gallery>=0.8.2
autoapi
dev =
black
pytest
pytest-mpl
sphinx
numpydoc
sphinx_rtd_theme
sphinx-copybutton
sphinx-autobuild
sphinx_gallery>=0.8.2
autoapi
{% if cookiecutter.version_control == 'bump2version' -%}
[bumpversion]
current_version = '0.0.1'
commit = True
tag = True
[bumpversion:file:setup.cfg]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:{{ cookiecutter.python_package_name }}/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
{%- endif %}