Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Surkal committed Oct 6, 2020
1 parent f784b1d commit b1c6412
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ __pycache__/*
.coverage
TODO
htmlcov/*
*.egg-info
dist/*
build/*
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import setuptools


with open("README.md", "r") as fh:
long_description = fh.read()

with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')

setuptools.setup(
name="wiktionnaireparser", # Replace with your own username
version="0.0.1",
version="0.0.2",
author="Surkal",
description="A library for parsing the french wiktionnary",
long_description=long_description,
Expand All @@ -20,4 +24,5 @@
"Natural Language :: English",
],
python_requires='>=3.6',
install_requires=install_requires,
)

0 comments on commit b1c6412

Please sign in to comment.