Skip to content

Commit

Permalink
fix versioning in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
clovis committed Jan 8, 2019
1 parent 4051f95 commit a6f4511
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,13 @@
print("Only 64 bit linux and MacOS are supported at this time.")
exit()

setup(name="textpair",
version="1.0alpha",
author="The ARTFL Project and OBVIL",
author_email="[email protected]",
packages=["textpair"],
scripts=["scripts/textpair"],
install_requires=[
"multiprocess", "mmh3", "unidecode", "tqdm",
"pystemmer", "argcomplete", "lxml"
],
extras_require={
"web": ["mod_wsgi", "flask", "flask-cors", "psycopg2-binary"]
}
)
setup(
name="textpair",
version="1.04",
author="The ARTFL Project",
author_email="[email protected]",
packages=["textpair"],
scripts=["scripts/textpair"],
install_requires=["multiprocess", "mmh3", "unidecode", "tqdm", "pystemmer", "lxml"],
extras_require={"web": ["mod_wsgi", "flask", "flask-cors", "psycopg2-binary"]},
)

0 comments on commit a6f4511

Please sign in to comment.