-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
32 lines (29 loc) · 775 Bytes
/
setup.cfg
File metadata and controls
32 lines (29 loc) · 775 Bytes
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
[metadata]
name = diffeq_solver_tk
version = attr: diffeq_solver_tk.__version__
description = Tkinter application for solving differential equations.
long_description = file: README.md
long_description_content_type = text/markdown
author = Joey Shi
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
[options]
packages = find:
include_package_data = True
python_requires = >= 3.10
package_dir =
=src
install_requires =
matplotlib
openpyxl
numpy
[options.packages.find]
where=src
[options.entry_points]
gui_scripts =
detk = diffeq_solver_tk.__main__:main
console_scripts =
detk-cli = diffeq_solver_tk.cli:main