We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb1e258 commit ada1633Copy full SHA for ada1633
README.md
@@ -2,6 +2,8 @@
2
3
Pure python geometric constraint solver
4
5
+`import gcs`
6
+
7
See `gcs/solve_elements.py` for a description of the
8
mechanics behind this package. Essentially, gcs implements
9
a constraint solver that breaks a problem into fully
gcs/eqn_set_splitting_proto.py
@@ -1,4 +1,4 @@
1
-#note: these functions are not used, see equation_solving instead
+# note: these functions are not used, see equation_solving instead
from blist import sortedlist
setup.py
@@ -6,4 +6,13 @@
version='0.0.1',
description='Geometric constraint solver',
packages=find_packages(),
+ install_requires=[
10
+ 'numpy',
11
+ 'scipy',
12
+ 'matplotlib',
13
+ 'python-igraph',
14
+ 'pycairo',
15
+ 'blist',
16
+ 'sortedcontainers',
17
+ ]
18
)
0 commit comments