Skip to content

Commit

Permalink
license + setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
art-ai committed Jul 4, 2018
1 parent 50a6d02 commit 4723b1b
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2018 Regents of the University of California

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ The PSDD was originally introduced in the paper:
```
"Probabilistic Sentential Decision Diagrams"
by Doga Kisa and Guy Van den Broeck and Arthur Choi and Adnan Darwiche
In Proceedings of the 14th International Conference on Principles of Knowledge Representation and Reasoning (KR), 2014.
In Proceedings of the 14th International Conference on
Principles of Knowledge Representation and Reasoning (KR), 2014.
```
http://reasoning.cs.ucla.edu/fetch.php?id=136&type=pdf

Expand Down
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-

from setuptools import setup


with open('README') as f:
readme = f.read()

with open('LICENSE') as f:
license = f.read()

setup(
name='pypsdd',
version='0.1', # get from pypsdd.__init__
description='The Python PSDD Package',
long_description=readme,
author='Arthur Choi',
author_email='[email protected]',
url='http://reasoning.cs.ucla.edu/psdd',
python_requires='>=2.7',
license=license,
packages=["pypsdd"]
)

0 comments on commit 4723b1b

Please sign in to comment.