Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Vipul-Cariappa committed Jan 20, 2023
1 parent 7b7b328 commit 83558d0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
5 changes: 5 additions & 0 deletions MathStuff/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from .calculus import differentiate, integrate, differentiate_latex, integrate_latex
from .fourier_series import fourier_series_evaluator, fourier_series_latex, fourier_graph_compute, fourier_visualizer, fourier_visualizer_svg
from .taylor_series import taylor_series, taylor_series_latex, taylor_series_computer, taylor_series_visualizer, taylor_series_visualizer_svg
from .logic import truth_table_generator
from .helper import convert_to_latex
Empty file removed MathStuff/__main__.py
Empty file.
17 changes: 10 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@ build-backend = "setuptools.build_meta"

[project]
name = "MathStuff"
version = "0.0.1"
authors = [
{ name="Vipul Cariappa", email="vipulcariappa@gmail.com" },
]
version = "0.0.2"
authors = [{ name = "Vipul Cariappa", email = "vipulcariappa@gmail.com" }]
description = "Math Stuff"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib==3.6.3",
"numpy==1.24.1",
"sympy==1.11.1",
]

[project.urls]
Expand Down

0 comments on commit 83558d0

Please sign in to comment.