Skip to content

Commit

Permalink
Include config files pypi package
Browse files Browse the repository at this point in the history
  • Loading branch information
guyemerson committed May 26, 2016
1 parent 3c24b2f commit 4982197
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ A library for manipulating DMRS structures.

### References

[Copestake (2007)](http://www.aclweb.org/anthology/E/E09/E09-1001.pdf)
[Copestake et al. (2016)](http://www.lrec-conf.org/proceedings/lrec2016/pdf/634_Paper.pdf)
- [Copestake (2007)](http://www.aclweb.org/anthology/E/E09/E09-1001.pdf)
- [Copestake et al. (2016)](http://www.lrec-conf.org/proceedings/lrec2016/pdf/634_Paper.pdf)
File renamed without changes.
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
from setuptools import setup
import os
from setuptools import setup, find_packages

VERSION = '1.0.2'

setup(
name = 'pydmrs',
packages = ['pydmrs'], # this must be the same as the name above
version = '1.0.1',
version = VERSION,
description = 'A library for manipulating DMRS graphs',
author = 'Ann Copestake, Guy Emerson, Mike Goodman, Matic Horvat, Alex Kuhnle, Ewa Muszyńska',
author_email = '[email protected]',
license = 'MIT',
url = 'https://github.com/delph-in/pydmrs',
download_url = 'https://github.com/delph-in/pydmrs/tarball/1.0.1',
download_url = 'https://github.com/delph-in/pydmrs/tarball/'+VERSION,
keywords = ['NLP', 'Natural Language Processing', 'Computational Linguistics', 'Semantics'],
packages = find_packages().append('examples'),
data_files = [('configs', ['configs/'+filename for filename in os.listdir('configs')])],
install_requires = [
'pydelphin'
]
Expand Down

0 comments on commit 4982197

Please sign in to comment.