add read me
This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,319 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: sympy
|
||||
Version: 1.14.0
|
||||
Summary: Computer algebra system (CAS) in Python
|
||||
Home-page: https://sympy.org
|
||||
Author: SymPy development team
|
||||
Author-email: sympy@googlegroups.com
|
||||
License: BSD
|
||||
Project-URL: Source, https://github.com/sympy/sympy
|
||||
Keywords: Math CAS
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Topic :: Scientific/Engineering
|
||||
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
||||
Classifier: Topic :: Scientific/Engineering :: Physics
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: 3.11
|
||||
Classifier: Programming Language :: Python :: 3.12
|
||||
Classifier: Programming Language :: Python :: 3.13
|
||||
Classifier: Programming Language :: Python :: 3 :: Only
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||||
Requires-Python: >=3.9
|
||||
Description-Content-Type: text/markdown
|
||||
License-File: LICENSE
|
||||
License-File: AUTHORS
|
||||
Requires-Dist: mpmath<1.4,>=1.1.0
|
||||
Provides-Extra: dev
|
||||
Requires-Dist: pytest>=7.1.0; extra == "dev"
|
||||
Requires-Dist: hypothesis>=6.70.0; extra == "dev"
|
||||
Dynamic: author
|
||||
Dynamic: author-email
|
||||
Dynamic: classifier
|
||||
Dynamic: description
|
||||
Dynamic: description-content-type
|
||||
Dynamic: home-page
|
||||
Dynamic: keywords
|
||||
Dynamic: license
|
||||
Dynamic: license-file
|
||||
Dynamic: project-url
|
||||
Dynamic: provides-extra
|
||||
Dynamic: requires-dist
|
||||
Dynamic: requires-python
|
||||
Dynamic: summary
|
||||
|
||||
# SymPy
|
||||
|
||||
[](https://pypi.python.org/pypi/sympy)
|
||||
[](https://gitter.im/sympy/sympy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
[](https://zenodo.org/badge/latestdoi/18918/sympy/sympy)
|
||||
[](https://pepy.tech/project/sympy)
|
||||
[](https://github.com/sympy/sympy/issues)
|
||||
[](https://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project)
|
||||
[](https://numfocus.org)
|
||||
[](https://github.com/sympy/sympy/releases)
|
||||
|
||||
[](https://sympy.org/)
|
||||
|
||||
|
||||
See the [AUTHORS](AUTHORS) file for the list of authors.
|
||||
|
||||
And many more people helped on the SymPy mailing list, reported bugs,
|
||||
helped organize SymPy's participation in the Google Summer of Code, the
|
||||
Google Highly Open Participation Contest, Google Code-In, wrote and
|
||||
blogged about SymPy...
|
||||
|
||||
License: New BSD License (see the [LICENSE](LICENSE) file for details) covers all
|
||||
files in the sympy repository unless stated otherwise.
|
||||
|
||||
Our mailing list is at
|
||||
<https://groups.google.com/forum/?fromgroups#!forum/sympy>.
|
||||
|
||||
We have a community chat at [Gitter](https://gitter.im/sympy/sympy). Feel
|
||||
free to ask us anything there. We have a very welcoming and helpful
|
||||
community.
|
||||
|
||||
## Download
|
||||
|
||||
The recommended installation method is through Anaconda,
|
||||
<https://www.anaconda.com/products/distribution>
|
||||
|
||||
You can also get the latest version of SymPy from
|
||||
<https://pypi.python.org/pypi/sympy/>
|
||||
|
||||
To get the git version do
|
||||
|
||||
$ git clone https://github.com/sympy/sympy.git
|
||||
|
||||
For other options (tarballs, debs, etc.), see
|
||||
<https://docs.sympy.org/dev/install.html>.
|
||||
|
||||
## Documentation and Usage
|
||||
|
||||
For in-depth instructions on installation and building the
|
||||
documentation, see the [SymPy Documentation Style Guide](https://docs.sympy.org/dev/documentation-style-guide.html).
|
||||
|
||||
Everything is at:
|
||||
|
||||
<https://docs.sympy.org/>
|
||||
|
||||
You can generate everything at the above site in your local copy of
|
||||
SymPy by:
|
||||
|
||||
$ cd doc
|
||||
$ make html
|
||||
|
||||
Then the docs will be in <span class="title-ref">\_build/html</span>. If
|
||||
you don't want to read that, here is a short usage:
|
||||
|
||||
From this directory, start Python and:
|
||||
|
||||
``` python
|
||||
>>> from sympy import Symbol, cos
|
||||
>>> x = Symbol('x')
|
||||
>>> e = 1/cos(x)
|
||||
>>> print(e.series(x, 0, 10))
|
||||
1 + x**2/2 + 5*x**4/24 + 61*x**6/720 + 277*x**8/8064 + O(x**10)
|
||||
```
|
||||
|
||||
SymPy also comes with a console that is a simple wrapper around the
|
||||
classic python console (or IPython when available) that loads the SymPy
|
||||
namespace and executes some common commands for you.
|
||||
|
||||
To start it, issue:
|
||||
|
||||
$ bin/isympy
|
||||
|
||||
from this directory, if SymPy is not installed or simply:
|
||||
|
||||
$ isympy
|
||||
|
||||
if SymPy is installed.
|
||||
|
||||
## Installation
|
||||
|
||||
To install SymPy using PyPI, run the following command:
|
||||
|
||||
$ pip install sympy
|
||||
|
||||
To install SymPy using Anaconda, run the following command:
|
||||
|
||||
$ conda install -c anaconda sympy
|
||||
|
||||
To install SymPy from GitHub source, first clone SymPy using `git`:
|
||||
|
||||
$ git clone https://github.com/sympy/sympy.git
|
||||
|
||||
Then, in the `sympy` repository that you cloned, simply run:
|
||||
|
||||
$ pip install .
|
||||
|
||||
See <https://docs.sympy.org/dev/install.html> for more information.
|
||||
|
||||
## Contributing
|
||||
|
||||
We welcome contributions from anyone, even if you are new to open
|
||||
source. Please read our [Introduction to Contributing](https://docs.sympy.org/dev/contributing/introduction-to-contributing.html)
|
||||
page and the [SymPy Documentation Style Guide](https://docs.sympy.org/dev/documentation-style-guide.html). If you
|
||||
are new and looking for some way to contribute, a good place to start is
|
||||
to look at the issues tagged [Easy to Fix](https://github.com/sympy/sympy/issues?q=is%3Aopen+is%3Aissue+label%3A%22Easy+to+Fix%22).
|
||||
|
||||
Please note that all participants in this project are expected to follow
|
||||
our Code of Conduct. By participating in this project you agree to abide
|
||||
by its terms. See [CODE\_OF\_CONDUCT.md](CODE_OF_CONDUCT.md).
|
||||
|
||||
## Tests
|
||||
|
||||
To execute all tests, run:
|
||||
|
||||
$./setup.py test
|
||||
|
||||
in the current directory.
|
||||
|
||||
For the more fine-grained running of tests or doctests, use `bin/test`
|
||||
or respectively `bin/doctest`. The master branch is automatically tested
|
||||
by GitHub Actions.
|
||||
|
||||
To test pull requests, use
|
||||
[sympy-bot](https://github.com/sympy/sympy-bot).
|
||||
|
||||
## Regenerate Experimental <span class="title-ref">LaTeX</span> Parser/Lexer
|
||||
|
||||
The parser and lexer were generated with the [ANTLR4](http://antlr4.org)
|
||||
toolchain in `sympy/parsing/latex/_antlr` and checked into the repo.
|
||||
Presently, most users should not need to regenerate these files, but
|
||||
if you plan to work on this feature, you will need the `antlr4`
|
||||
command-line tool (and you must ensure that it is in your `PATH`).
|
||||
One way to get it is:
|
||||
|
||||
$ conda install -c conda-forge antlr=4.11.1
|
||||
|
||||
Alternatively, follow the instructions on the ANTLR website and download
|
||||
the `antlr-4.11.1-complete.jar`. Then export the `CLASSPATH` as instructed
|
||||
and instead of creating `antlr4` as an alias, make it an executable file
|
||||
with the following contents:
|
||||
``` bash
|
||||
#!/bin/bash
|
||||
java -jar /usr/local/lib/antlr-4.11.1-complete.jar "$@"
|
||||
```
|
||||
|
||||
After making changes to `sympy/parsing/latex/LaTeX.g4`, run:
|
||||
|
||||
$ ./setup.py antlr
|
||||
|
||||
## Clean
|
||||
|
||||
To clean everything (thus getting the same tree as in the repository):
|
||||
|
||||
$ git clean -Xdf
|
||||
|
||||
which will clear everything ignored by `.gitignore`, and:
|
||||
|
||||
$ git clean -df
|
||||
|
||||
to clear all untracked files. You can revert the most recent changes in
|
||||
git with:
|
||||
|
||||
$ git reset --hard
|
||||
|
||||
WARNING: The above commands will all clear changes you may have made,
|
||||
and you will lose them forever. Be sure to check things with `git
|
||||
status`, `git diff`, `git clean -Xn`, and `git clean -n` before doing any
|
||||
of those.
|
||||
|
||||
## Bugs
|
||||
|
||||
Our issue tracker is at <https://github.com/sympy/sympy/issues>. Please
|
||||
report any bugs that you find. Or, even better, fork the repository on
|
||||
GitHub and create a pull request. We welcome all changes, big or small,
|
||||
and we will help you make the pull request if you are new to git (just
|
||||
ask on our mailing list or Gitter Channel). If you further have any queries, you can find answers
|
||||
on Stack Overflow using the [sympy](https://stackoverflow.com/questions/tagged/sympy) tag.
|
||||
|
||||
## Brief History
|
||||
|
||||
SymPy was started by Ondřej Čertík in 2005, he wrote some code during
|
||||
the summer, then he wrote some more code during summer 2006. In February
|
||||
2007, Fabian Pedregosa joined the project and helped fix many things,
|
||||
contributed documentation, and made it alive again. 5 students (Mateusz
|
||||
Paprocki, Brian Jorgensen, Jason Gedge, Robert Schwarz, and Chris Wu)
|
||||
improved SymPy incredibly during summer 2007 as part of the Google
|
||||
Summer of Code. Pearu Peterson joined the development during the summer
|
||||
2007 and he has made SymPy much more competitive by rewriting the core
|
||||
from scratch, which has made it from 10x to 100x faster. Jurjen N.E. Bos
|
||||
has contributed pretty-printing and other patches. Fredrik Johansson has
|
||||
written mpmath and contributed a lot of patches.
|
||||
|
||||
SymPy has participated in every Google Summer of Code since 2007. You
|
||||
can see <https://github.com/sympy/sympy/wiki#google-summer-of-code> for
|
||||
full details. Each year has improved SymPy by bounds. Most of SymPy's
|
||||
development has come from Google Summer of Code students.
|
||||
|
||||
In 2011, Ondřej Čertík stepped down as lead developer, with Aaron
|
||||
Meurer, who also started as a Google Summer of Code student, taking his
|
||||
place. Ondřej Čertík is still active in the community but is too busy
|
||||
with work and family to play a lead development role.
|
||||
|
||||
Since then, a lot more people have joined the development and some
|
||||
people have also left. You can see the full list in doc/src/aboutus.rst,
|
||||
or online at:
|
||||
|
||||
<https://docs.sympy.org/dev/aboutus.html#sympy-development-team>
|
||||
|
||||
The git history goes back to 2007 when development moved from svn to hg.
|
||||
To see the history before that point, look at
|
||||
<https://github.com/sympy/sympy-old>.
|
||||
|
||||
You can use git to see the biggest developers. The command:
|
||||
|
||||
$ git shortlog -ns
|
||||
|
||||
will show each developer, sorted by commits to the project. The command:
|
||||
|
||||
$ git shortlog -ns --since="1 year"
|
||||
|
||||
will show the top developers from the last year.
|
||||
|
||||
## Citation
|
||||
|
||||
To cite SymPy in publications use
|
||||
|
||||
> Meurer A, Smith CP, Paprocki M, Čertík O, Kirpichev SB, Rocklin M,
|
||||
> Kumar A, Ivanov S, Moore JK, Singh S, Rathnayake T, Vig S, Granger BE,
|
||||
> Muller RP, Bonazzi F, Gupta H, Vats S, Johansson F, Pedregosa F, Curry
|
||||
> MJ, Terrel AR, Roučka Š, Saboo A, Fernando I, Kulal S, Cimrman R,
|
||||
> Scopatz A. (2017) SymPy: symbolic computing in Python. *PeerJ Computer
|
||||
> Science* 3:e103 <https://doi.org/10.7717/peerj-cs.103>
|
||||
|
||||
A BibTeX entry for LaTeX users is
|
||||
|
||||
``` bibtex
|
||||
@article{10.7717/peerj-cs.103,
|
||||
title = {SymPy: symbolic computing in Python},
|
||||
author = {Meurer, Aaron and Smith, Christopher P. and Paprocki, Mateusz and \v{C}ert\'{i}k, Ond\v{r}ej and Kirpichev, Sergey B. and Rocklin, Matthew and Kumar, Amit and Ivanov, Sergiu and Moore, Jason K. and Singh, Sartaj and Rathnayake, Thilina and Vig, Sean and Granger, Brian E. and Muller, Richard P. and Bonazzi, Francesco and Gupta, Harsh and Vats, Shivam and Johansson, Fredrik and Pedregosa, Fabian and Curry, Matthew J. and Terrel, Andy R. and Rou\v{c}ka, \v{S}t\v{e}p\'{a}n and Saboo, Ashutosh and Fernando, Isuru and Kulal, Sumith and Cimrman, Robert and Scopatz, Anthony},
|
||||
year = 2017,
|
||||
month = Jan,
|
||||
keywords = {Python, Computer algebra system, Symbolics},
|
||||
abstract = {
|
||||
SymPy is an open-source computer algebra system written in pure Python. It is built with a focus on extensibility and ease of use, through both interactive and programmatic applications. These characteristics have led SymPy to become a popular symbolic library for the scientific Python ecosystem. This paper presents the architecture of SymPy, a description of its features, and a discussion of select submodules. The supplementary material provides additional examples and further outlines details of the architecture and features of SymPy.
|
||||
},
|
||||
volume = 3,
|
||||
pages = {e103},
|
||||
journal = {PeerJ Computer Science},
|
||||
issn = {2376-5992},
|
||||
url = {https://doi.org/10.7717/peerj-cs.103},
|
||||
doi = {10.7717/peerj-cs.103}
|
||||
}
|
||||
```
|
||||
|
||||
SymPy is BSD licensed, so you are free to use it whatever you like, be
|
||||
it academic, commercial, creating forks or derivatives, as long as you
|
||||
copy the BSD statement if you redistribute it (see the LICENSE file for
|
||||
details). That said, although not required by the SymPy license, if it
|
||||
is convenient for you, please cite SymPy when using it in your work and
|
||||
also consider contributing all your changes back, so that we can
|
||||
incorporate it and all of us will benefit in the end.
|
||||
3105
venv/lib/python3.12/site-packages/sympy-1.14.0.dist-info/RECORD
Normal file
3105
venv/lib/python3.12/site-packages/sympy-1.14.0.dist-info/RECORD
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: setuptools (79.0.1)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
[console_scripts]
|
||||
isympy = isympy:main
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,153 @@
|
||||
Copyright (c) 2006-2023 SymPy Development Team
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
a. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
b. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
c. Neither the name of SymPy nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGE.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Patches that were taken from the Diofant project (https://github.com/diofant/diofant)
|
||||
are licensed as:
|
||||
|
||||
Copyright (c) 2006-2018 SymPy Development Team,
|
||||
2013-2023 Sergey B Kirpichev
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
a. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
b. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
c. Neither the name of Diofant or SymPy nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGE.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Submodules taken from the multipledispatch project (https://github.com/mrocklin/multipledispatch)
|
||||
are licensed as:
|
||||
|
||||
Copyright (c) 2014 Matthew Rocklin
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
a. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
b. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
c. Neither the name of multipledispatch nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGE.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
The files under the directory sympy/parsing/autolev/tests/pydy-example-repo
|
||||
are directly copied from PyDy project and are licensed as:
|
||||
|
||||
Copyright (c) 2009-2023, PyDy Authors
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
* Neither the name of this project nor the names of its contributors may be
|
||||
used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL PYDY AUTHORS BE LIABLE FOR ANY DIRECT,
|
||||
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
||||
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
The files under the directory sympy/parsing/latex
|
||||
are directly copied from latex2sympy project and are licensed as:
|
||||
|
||||
Copyright 2016, latex2sympy
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -0,0 +1,2 @@
|
||||
isympy
|
||||
sympy
|
||||
Reference in New Issue
Block a user