Skip to content

Commit ada1633

Browse files
committed
Add setup.py install_requires
1 parent fb1e258 commit ada1633

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
Pure python geometric constraint solver
44

5+
`import gcs`
6+
57
See `gcs/solve_elements.py` for a description of the
68
mechanics behind this package. Essentially, gcs implements
79
a constraint solver that breaks a problem into fully

gcs/eqn_set_splitting_proto.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#note: these functions are not used, see equation_solving instead
1+
# note: these functions are not used, see equation_solving instead
22

33
from blist import sortedlist
44

setup.py

+9
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,13 @@
66
version='0.0.1',
77
description='Geometric constraint solver',
88
packages=find_packages(),
9+
install_requires=[
10+
'numpy',
11+
'scipy',
12+
'matplotlib',
13+
'python-igraph',
14+
'pycairo',
15+
'blist',
16+
'sortedcontainers',
17+
]
918
)

0 commit comments

Comments
 (0)