-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move author/version info back to __init__.py
for accessibility in the docs. This fixes docs-builds on rtfd.org which was broken since 9629ddf
- Loading branch information
Showing
3 changed files
with
13 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,16 @@ | ||
#!/usr/bin/env python | ||
from distutils.core import setup | ||
|
||
|
||
__productname__ = 'urwidtrees' | ||
__version__ = '1.0.2' | ||
__copyright__ = "Copyright (C) 2015 Patrick Totzke" | ||
__author__ = "Patrick Totzke" | ||
__author_email__ = "patricktotzke@gmail.com" | ||
__description__ = "Tree widgets for urwid" | ||
__url__ = "https://github.com/pazz/urwidtrees" | ||
__license__ = "Licensed under the GNU GPL v3+." | ||
|
||
import urwidtrees | ||
|
||
setup( | ||
name='urwidtrees', | ||
version=__version__, | ||
description=__description__, | ||
author=__author__, | ||
author_email=__author_email__, | ||
url=__url__, | ||
license=__copyright__, | ||
version=urwidtrees.__version__, | ||
description="Tree widgets for urwid", | ||
author="Patrick Totzke", | ||
author_email="patricktotzke@gmail.com", | ||
url="https://github.com/pazz/urwidtrees", | ||
license="Licensed under the GNU GPL v3+.", | ||
packages=['urwidtrees'], | ||
install_requires=['urwid>=1.1.0', 'mock'], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters