Skip to content

Commit

Permalink
Fixed classifiers in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekmo committed Nov 17, 2016
1 parent a30a884 commit 0d064b5
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,11 @@ def frange(x, y, jump):
break
CLASSIFIERS.extend(['Programming Language :: Python :: %s' % version for version in python_versions])

CLASSIFIERS.extend([
'Natural Language :: {}'.format(NATURAL_LANGUAGE),
'Development Status :: {} - {}'.format(STATUS_LEVEL, status_name),
])

setup(
name=PACKAGE_NAME,
version=package_version,
Expand All @@ -283,10 +288,7 @@ def frange(x, y, jump):

url=URL,

classifiers=CLASSIFIERS.extend([
'Natural Language :: {}'.format(NATURAL_LANGUAGE),
'Development Status :: {} - {}'.format(STATUS_LEVEL, status_name),
]),
classifiers=CLASSIFIERS,

platforms=PLATFORMS,

Expand Down

0 comments on commit 0d064b5

Please sign in to comment.