-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (35 loc) · 1016 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
40
41
[metadata]
name = optiflow
version = 0.0.1
description="Inventory optimziation toolset"
long_description = file: README.md
long_description_content_type = text/markdown
url='https://github.com/selewaut/optiflow'
author="Santiago Elewaut"
author_email='[email protected]'
classifiers =
'Development Status :: 2 - Pre-Alpha'
'Intended Audience :: Developers'
'Natural Language :: English'
'Programming Language :: Python :: 3'
'Programming Language :: Python :: 3.6'
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.8'
[options]
py_modules = optiflow
python_requires = >=3.10
package_dir =
= src
install_requires =
numpy
pandas
[bumpversion]
current_version = 0.0.1
commit = True
tag = True
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:optiflow/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'