-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (18 loc) · 767 Bytes
/
setup.py
File metadata and controls
18 lines (18 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
from pyfdc.version import __version__
link_to_use = "https://github.com/Nelson-Gon/pyfdc/archive/refs/tags/v"+__version__+".zip"
setup(name='pyfdc',
version=__version__,
description='A python interface to FoodDataCentral',
url="http://www.github.com/Nelson-Gon/pyfdc",
download_url=link_to_use,
author='Nelson Gonzabato',
author_email='gonzabato@hotmail.com',
license='MIT',
keywords="nutrition food agriculture rest api",
packages=find_packages(),
long_description=open('README.md', encoding="utf-8").read(),
long_description_content_type='text/markdown',
install_requires=['requests', 'pandas'],
python_requires='>=3.6',
zip_safe=False)