Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lepture committed Jul 26, 2013
1 parent 39761c1 commit 3add45e
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,28 +1,42 @@
#!/usr/bin/env python
# coding: utf-8

try:
# python setup.py test
import multiprocessing
except ImportError:
pass

from setuptools import setup

setup(
name='Flask-ShortUrl',
version='0.1.1',
version='0.1.2',
url='https://github.com/lepture/flask-shorturl',
author='Hsiaoming Yang',
author_email='[email protected]',
description='Short URL generaotr for Flask',
long_description=open('README.rst').read(),
license=open('LICENSE').read(),
py_modules=['flask_shorturl'],
zip_safe=False,
platforms='any',
install_requires=['Flask'],
tests_require=['nose'],
test_suite='nose.collector',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD 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 :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
Expand Down

0 comments on commit 3add45e

Please sign in to comment.