From ae816dffc4020174755be8366883427e8bbc2c3a Mon Sep 17 00:00:00 2001 From: Daniel Lawrence Date: Tue, 15 Dec 2015 20:45:40 -0800 Subject: [PATCH] Minor updates in setup.py --- LICENSE | 2 +- setup.py | 21 +++++++++++++++++++-- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 24e2f43..fe6293e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2013 Daniel Lawrence +Copyright (c) 2015 Daniel Lawrence Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/setup.py b/setup.py index cfaa121..f4ca1f7 100755 --- a/setup.py +++ b/setup.py @@ -1,15 +1,32 @@ #!/usr/bin/env python - from distutils.core import setup +import textwrap + setup( name='GraphiteSpark', - version='0.2', + version='0.3', description='graphitespark', author='Danny Lawrence', author_email='dannyla@linux.com', url='http://www.github.com/daniellawrence/graphite-spark', package_dir={'': 'src'}, packages=[''], + license="GPL", scripts=['bin/graphitespark'] + classifiers=textwrap.dedent(""" + Development Status :: 5 - Production/Stable + Intended Audience :: Developers + License :: OSI Approved :: GPLv3 + Operating System :: OS Independent + Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.3 + Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 + Topic :: Software Development :: Libraries :: Python Modules + Topic :: System :: Archiving :: Packaging + Topic :: System :: Systems Administration + Topic :: Utilities + """).strip().splitlines(), )