-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·34 lines (32 loc) · 1.81 KB
/
setup.py
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
#!/usr/bin/env python3
import setuptools
setuptools.setup (
name = "sympad",
version = "1.1.6",
author = "Tomasz Pytel",
author_email = "[email protected]",
license = 'BSD',
keywords = "Math CAS SymPy GUI",
description = "Graphical symbolic math calculator / scratchpad using SymPy",
long_description = "SymPad is a simple single script graphical symbolic calculator / scratchpad using SymPy for the math, MathJax for the display in a browser and matplotlib for plotting. "
"User input is intended to be quick, easy and intuitive and is displayed in symbolic form as it is being entered. "
"Sympad will accept Python expressions, LaTeX formatting, unicode math symbols and a native shorthand intended for quick entry, or a mix of all of these. "
"The input will be evaluated symbolically or numerically with the results being copy/pasteable in Python or LaTeX formats, so it acts as a translator as well.",
long_description_content_type = "text/plain",
url = "https://github.com/Pristine-Cat/sympad",
packages = ['sympad'],
scripts = ['bin/sympad'],
classifiers = [
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
],
install_requires = ['sympy>=1.7.1'],
python_requires = '>=3.6',
)