Skip to content

Commit

Permalink
package promoted to Alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
hvelarde committed Mar 29, 2012
1 parent 86eed21 commit e545d7b
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions setup.py
Expand Up @@ -4,19 +4,17 @@
import os

version = '1.0dev'
long_description = "%s\n%s\n%s\n%s" % (
open("README.rst").read(),
open(os.path.join("docs", "INSTALL.txt")).read(),
open(os.path.join("docs", "CREDITS.txt")).read(),
open(os.path.join("docs", "HISTORY.txt")).read(),
)
long_description = open("README.rst").read() + "\n" + \
open(os.path.join("docs", "INSTALL.txt")).read() + "\n" + \
open(os.path.join("docs", "CREDITS.txt")).read() + "\n" + \
open(os.path.join("docs", "HISTORY.txt")).read()

setup(name='collective.nitf',
version=version,
description="A Dexterity-based content type inspired on the News Industry Text Format specification.",
description="A content type inspired on the News Industry Text Format specification.",
long_description=long_description,
classifiers=[
"Development Status :: 1 - Planning",
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.1",
Expand Down

0 comments on commit e545d7b

Please sign in to comment.