Skip to content

Commit

Permalink
Updates docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelson-Gon committed Feb 20, 2020
1 parent ef96421 commit 5a0d080
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Nelson Gonzabato'

# The full version, including alpha/beta/rc tags
release = '0.1.0'
release = '0.1.1'


# -- General configuration ---------------------------------------------------
Expand Down
29 changes: 16 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
from setuptools import setup, find_packages


setup(name='pyfdc',
version='0.1.0',
description='A python interface to FoodDataCentral',
url='http://www.github.com/Nelson-Gon/pyfdc',
download_url = "https://github.com/Nelson-Gon/pyfdc/archive/v0.1.0.zip",
author='Nelson Gonzabato',
author_email='gonzabato@hotmail.com',
license='MIT',
keywords = "nutrition food agriculture rest api",
packages=find_packages(),
long_description = open(README.md).read(),
install_requires=['requests', 'pandas'],
python_requires='>=3.6',
zip_safe=False)
version='0.1.1',
description='A python interface to FoodDataCentral',
url='http://www.github.com/Nelson-Gon/pyfdc',
download_url="https://github.com/Nelson-Gon/pyfdc/archive/v0.1.1.zip",
author='Nelson Gonzabato',
author_email='gonzabato@hotmail.com',
license='MIT',
keywords="nutrition food agriculture rest api",
packages=find_packages(),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=['requests', 'pandas'],
python_requires='>=3.6',
zip_safe=False)

0 comments on commit 5a0d080

Please sign in to comment.