-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""
Setup file for pubblication.
"""
import pathlib
from setuptools import find_packages, setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="recipe-tagger",
packages=find_packages(include=["recipe_tagger"]),
version="0.4.13",
description="A library for tagging, classify and calculate the water footprint of food recipes",
author="Andrea Turconi",
license="MIT",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/TurconiAndrea/recipe-tagger",
download_url="https://github.com/TurconiAndrea/recipe-tagger/archive/refs/tags/0.4.13.tar.gz",
keywords=["food", "recipe", "tag", "tagging", "ingredient", "water footprint"],
install_requires=[
"wikipedia-api",
"PyDictionary",
"textblob",
"pyfood",
"unidecode",
"numpy",
"nltk",
"stop-words",
],
test_suite="tests",
package_data={"": ["data/*.npy", "provider/*.json"]},
)