Skip to content

Commit

Permalink
tentative setuptools packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
LoicGrobol committed Mar 3, 2020
1 parent 89928d4 commit 1c9a141
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.mypy_cache
22 changes: 22 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[metadata]
name = uuparser
version = 2.3
description = A transition-based parser for Universal Dependencies with BiLSTM word and character representations.
license = Apache
author = Uppsala NLP group
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown

keywords =
nlp
conversion

[options]
packages = find:
include_package_data=True
python_requires = >= 3.6
install_requires =
dynet
h5py
numpy
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import setuptools

setuptools.setup()
Empty file added uuparser/__init__.py
Empty file.
Empty file added uuparser/utils/__init__.py
Empty file.

0 comments on commit 1c9a141

Please sign in to comment.