-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.cfg
57 lines (53 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
[metadata]
name = stockpyl
version = 1.0.1
description = A Python package for inventory optimization and simulation
long_description = file: README.md
long_description_content_type = text/markdown
author = Larry Snyder
author_email = [email protected]
url = https://github.com/LarrySnyder/stockpyl
keywords = inventory, optimization
license = GNU General Public License v3 (GPLv3)
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Natural Language :: English
Programming Language :: Python :: 3
Topic :: Education
Topic :: Office/Business
Topic :: Scientific/Engineering
[options]
zip_safe=False
include_package_data=True
install_requires =
build>=0.0.2
jsonpickle>=1.0
matplotlib>=2.0
networkx>=2.0
numpy>=1.21
scipy>=1.6.0
setuptools>=70.0
sphinx==4.5.0
sphinx_rtd_theme>=1.0.0
sphinx_toolbox>=3.1.2
tabulate>=0.8.7
tqdm>=4.1.0
# Since we are using a "src" layout, we need the following:
package_dir=
=src
packages=find:
[options.packages.find]
where=src
[bumpver]
current_version = "1.0.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = True
tag = True
push = False
[bumpver:file_patterns]
setup.cfg =
current_version = "{version}"
version = {version}