From 5b2a2f98a714188da01e77b74903939f28c6ed6b Mon Sep 17 00:00:00 2001 From: ej2 Date: Fri, 18 Sep 2015 13:17:09 -0500 Subject: [PATCH] Update readme. --- LICENSE | 2 +- setup.py | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 242132d..24c8ab8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) +Copyright (c) 2015 Edward Emanuel Jr. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py index 9c11cf9..ea45c1b 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,15 @@ +import codecs +import os + from setuptools import setup, find_packages +def read(*parts): + filename = os.path.join(os.path.dirname(__file__), *parts) + with codecs.open(filename, encoding='utf-8') as fp: + return fp.read() + + VERSION = (0, 2, 10) version = '.'.join(map(str, VERSION)) @@ -13,6 +22,7 @@ url='https://github.com/sidecars/python-quickbooks', license='MIT', keywords=['quickbooks', 'qbo', 'accounting'], + long_description=read('README.md'), install_requires=[ 'setuptools', @@ -23,5 +33,17 @@ 'python-dateutil', ], + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + ], packages=find_packages(), )