Skip to content

Commit

Permalink
Added files needed for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
nikos-tri committed Aug 12, 2019
1 parent aee7570 commit 2e0c5d3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Empty file added __init__.py
Empty file.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="stlcg",
version="0.0.1",
author="Karen Leung and Nikos Arechiga",
author_email="[email protected] and [email protected]",
description="A toolbox to compute the robustness of STL formulas using computations graphs (PyTorch).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/StanfordASL/stlcg",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)

0 comments on commit 2e0c5d3

Please sign in to comment.