Skip to content

Commit 4982197

Browse files
committed
Include config files pypi package
1 parent 3c24b2f commit 4982197

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ A library for manipulating DMRS structures.
44

55
### References
66

7-
[Copestake (2007)](http://www.aclweb.org/anthology/E/E09/E09-1001.pdf)
8-
[Copestake et al. (2016)](http://www.lrec-conf.org/proceedings/lrec2016/pdf/634_Paper.pdf)
7+
- [Copestake (2007)](http://www.aclweb.org/anthology/E/E09/E09-1001.pdf)
8+
- [Copestake et al. (2016)](http://www.lrec-conf.org/proceedings/lrec2016/pdf/634_Paper.pdf)
File renamed without changes.

setup.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
1-
from setuptools import setup
1+
import os
2+
from setuptools import setup, find_packages
3+
4+
VERSION = '1.0.2'
5+
26
setup(
37
name = 'pydmrs',
4-
packages = ['pydmrs'], # this must be the same as the name above
5-
version = '1.0.1',
8+
version = VERSION,
69
description = 'A library for manipulating DMRS graphs',
710
author = 'Ann Copestake, Guy Emerson, Mike Goodman, Matic Horvat, Alex Kuhnle, Ewa Muszyńska',
811
author_email = '[email protected]',
912
license = 'MIT',
1013
url = 'https://github.com/delph-in/pydmrs',
11-
download_url = 'https://github.com/delph-in/pydmrs/tarball/1.0.1',
14+
download_url = 'https://github.com/delph-in/pydmrs/tarball/'+VERSION,
1215
keywords = ['NLP', 'Natural Language Processing', 'Computational Linguistics', 'Semantics'],
16+
packages = find_packages().append('examples'),
17+
data_files = [('configs', ['configs/'+filename for filename in os.listdir('configs')])],
1318
install_requires = [
1419
'pydelphin'
1520
]

0 commit comments

Comments
 (0)