diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..698f1cb --- /dev/null +++ b/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2016, Marcell Vazquez-Chanlatte +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 py-stl 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 COPYRIGHT HOLDER 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. diff --git a/README b/README new file mode 100644 index 0000000..6ee71ae --- /dev/null +++ b/README @@ -0,0 +1,3 @@ +# About + +# Usage diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..02510be --- /dev/null +++ b/setup.py @@ -0,0 +1,20 @@ +from setuptools import setup, find_packages + +setup(name='py-stl', + version='0.1', + description='TODO', + url='http://github.com/mvcisback/py-stl', + author='Marcell Vazquez-Chanlatte', + author_email='marcell.vc@eecs.berkeley.edu', + license='MIT', + install_requires=[ + 'funcy', + 'parsimonious', + 'lenses', + 'sympy', + ], + extras_require = { + 'robustness': ['numpy', 'pandas'] + }, + packages=find_packages(), +) diff --git a/__init__.py b/stl/__init__.py similarity index 100% rename from __init__.py rename to stl/__init__.py diff --git a/ast.py b/stl/ast.py similarity index 100% rename from ast.py rename to stl/ast.py diff --git a/boolean_eval.py b/stl/boolean_eval.py similarity index 100% rename from boolean_eval.py rename to stl/boolean_eval.py diff --git a/parser.py b/stl/parser.py similarity index 100% rename from parser.py rename to stl/parser.py diff --git a/robustness.py b/stl/robustness.py similarity index 100% rename from robustness.py rename to stl/robustness.py diff --git a/synth.py b/stl/synth.py similarity index 100% rename from synth.py rename to stl/synth.py diff --git a/test_boolean_eval.py b/stl/test_boolean_eval.py similarity index 100% rename from test_boolean_eval.py rename to stl/test_boolean_eval.py diff --git a/test_parser.py b/stl/test_parser.py similarity index 100% rename from test_parser.py rename to stl/test_parser.py diff --git a/test_robustness.py b/stl/test_robustness.py similarity index 100% rename from test_robustness.py rename to stl/test_robustness.py diff --git a/test_synth.py b/stl/test_synth.py similarity index 100% rename from test_synth.py rename to stl/test_synth.py diff --git a/test_utils.py b/stl/test_utils.py similarity index 100% rename from test_utils.py rename to stl/test_utils.py diff --git a/utils.py b/stl/utils.py similarity index 100% rename from utils.py rename to stl/utils.py