Skip to content

Commit

Permalink
added trove classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
elmotec committed Jun 24, 2015
1 parent e94db61 commit ee47ff9
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from setuptools import setup

here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
readme = open(os.path.join(here, 'README.rst')).read()

setup(
name="massedit",
Expand All @@ -20,18 +20,22 @@
url="http://github.com/elmotec/massedit",
py_modules=['massedit'],
entry_points={'console_scripts': ['massedit=massedit:main']},
long_description=README,
long_description=readme,
test_suite='tests',
setup_requires=[],
tests_require=['mock'],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Text Editors :: Text Processing",
"Topic :: Utilities",
"Intended Audience :: Developers",
],
classifiers=["Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Text Editors :: Text Processing",
"Topic :: Text Processing :: Filters",
"Topic :: Utilities",
"Intended Audience :: Developers",
],
)

0 comments on commit ee47ff9

Please sign in to comment.