-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c24b2f
commit 4982197
Showing
3 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
] | ||
|