Skip to content

Commit

Permalink
setup.py: fix name; add classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
hfaran committed Feb 27, 2016
1 parent bdbf606 commit 627d775
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def read(filename):


setup(
name="slackviewer",
name="slack-export-viewer",
version=slackviewer.__version__,
url='https://github.com/hfaran/slack-export-viewer',
license='MIT License',
Expand All @@ -31,5 +31,15 @@ def read(filename):
]},
include_package_data=True,
# https://github.com/mitsuhiko/flask/issues/1562
zip_safe=False
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)

0 comments on commit 627d775

Please sign in to comment.