Skip to content

Commit

Permalink
Merge pull request #3 from walexnelson/new-release
Browse files Browse the repository at this point in the history
New release
  • Loading branch information
walexnelson committed Mar 14, 2017
2 parents bd9d009 + 58e2a0e commit 8a24e22
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 34 deletions.
1 change: 0 additions & 1 deletion Examples/__init__.py
@@ -1 +0,0 @@
__author__ = 'alexnelson'
66 changes: 33 additions & 33 deletions setup.py
@@ -1,33 +1,33 @@
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

requires = [
'requests',
'rauth'
]

setup(
name='fatsecret',
version='0.2.1',
description='Python wrapper for FatSecret REST API',
url='github.com/walexnelson/pyfatsecret',
license='MIT',
author='Alex Nelson',
author_email='w.alexnelson@gmail.com',
install_requires=requires,
packages=["fatsecret"],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
]
)
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

requires = [
'requests',
'rauth'
]

setup(
name='fatsecret',
packages=['fatsecret'],
version='0.2.3',
description='Python wrapper for FatSecret REST API',
author='Alex Nelson',
author_email='w.alexnelson@gmail.com',
url='https://github.com/walexnelson/pyfatsecret',
license='MIT',
install_requires=requires,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
]
)

0 comments on commit 8a24e22

Please sign in to comment.