Skip to content

Commit

Permalink
Minor updates in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellawrence committed Dec 16, 2015
1 parent 3938094 commit ae816df
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2013 Daniel Lawrence
Copyright (c) 2015 Daniel Lawrence <dannyla@linux.com>

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:

Expand Down
21 changes: 19 additions & 2 deletions 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(),
)

0 comments on commit ae816df

Please sign in to comment.