#!/usr/bin/env python3 from setuptools import setup, find_packages def read_requirements(filename): return [req.strip() for req in open(filename)] setup( name='python-usda', version=open('VERSION').read().strip(), author='Lucidiot', packages=find_packages( exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), package_data={ '': ['*.rst', 'LICENSE', 'README'], }, install_requires=read_requirements('requirements.txt'), python_requires='>=3.4', extras_require={ 'dev': read_requirements('requirements-dev.txt'), }, license='GNU General Public License 3', description="A fork of pygov focused on USDA nutritional database API", long_description=open('README.rst').read(), long_description_content_type='text/markdown', keywords="api usda nutrition food", url="https://gitlab.com/Lucidiot/python-usda", classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Natural Language :: English", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", ], project_urls={ "Source Code": "https://gitlab.com/Lucidiot/python-usda", "GitHub Mirror": "https://github.com/Lucidiot/python-usda", "Gitter Chat": "https://gitter.im/BrainshitPseudoScience/Lobby", } )