Skip to content

Commit

Permalink
update setup.py for live deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
mankyd committed Feb 17, 2013
1 parent 965a0ab commit 449565f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
build
_build
*.egg-info
dist
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,26 @@
version=__version__,
description='An HTML Minifier',
long_description=README,
url='https://htmlmin.readthedocs.org/en/latest/',
download_url='https://github.com/mankyd/htmlmin',
author='Dave Mankoff',
author_email='mankyd@gmail.com',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
test_suite='htmlmin.tests.tests.suite',
install_requires=[],
tests_require=[],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2.6",
"Topic :: Text Processing :: Markup :: HTML",
],
entry_points={
'console_scripts': [
'htmlmin = htmlmin.command:main',
Expand Down

0 comments on commit 449565f

Please sign in to comment.