-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 759 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (26 loc) · 759 Bytes
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
from setuptools import find_packages, setup
from setuptools.command.install import install
import sys
import os
# circleci.py version
VERSION = "0.1.15"
def readme():
"""print long description"""
with open('README.md') as f:
return f.read()
setup(
name='PyIng',
packages=find_packages(include=['PyIng']),
version=VERSION,
description='Parses ingredient names into Name, Unit and Quantity',
author='Will White',
license='MIT',
install_requires=["tflite-runtime>=2.5", "numpy"],
url='https://github.com/whitew1994WW/PyIng',
test_suite='tests',
python_requires='>=3.7',
long_description=readme(),
long_description_content_type='text/markdown',
include_package_data=True,
zip_safe=True
)