Skip to content

Commit

Permalink
Merge pull request yuce#28 from yuce/updated-readme
Browse files Browse the repository at this point in the history
Updated README
  • Loading branch information
yuce authored May 22, 2018
2 parents 1693d4b + b4593f3 commit 8aa332e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ __pycache__
.coverage
*.BAC
.pytest_cache
dist/
pyswip.egg-info/
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ http://www.ahsc.arizona.edu/~schcats/projects/docs/prolog-0.2.0.html
* [A Planning Module for a ROS-Based Ubiquitous Robot Control System](https://dspace.library.uu.nl/bitstream/handle/1874/292669/2014-03-27%20MSc%20Thesis%20Pieterjan%20van%20Gastel.pdf) (PDF)
* [A pilot framework developed as a common platform integrating diverse elements of computer aided fixture design](https://www.tandfonline.com/doi/full/10.1080/00207543.2013.832000)
* [Integration von Prolog und ClioPatria in Python](http://www1.pub.informatik.uni-wuerzburg.de/pub/theses/2017-bodenlos-master.pdf) (PDF, German)
* [SELECTSCRIPT: A Query Language for Robotic World Models and Simulations](https://ieeexplore.ieee.org/document/7140077/)
* [A Concept for Declarative Information Acquisition in Smart Environments](https://d-nb.info/1122172583/34)

### Videos

Expand Down
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,25 @@
import sys
import os
import os.path
from distutils.core import setup
from setuptools import setup

with open("README.md") as f:
long_description = f.read()


setup(name="pyswip",
version="0.3.0",
version="0.2.4",
url="https://github.com/yuce/pyswip",
download_url="https://github.com/yuce/pyswip/releases",
author="Yuce Tekol",
author_email="[email protected]",
description="PySWIP enables querying SWI-Prolog in your Python programs.",
long_description="",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=["pyswip"],
keywords=["prolog", "artificial intelligence", "ai", "ffi", "ctypes"],
tests_require=['pytest', 'coverage', 'pytest-cov'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 8aa332e

Please sign in to comment.