File: setup.py

package info (click to toggle)
python-urwidtrees 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 216 kB
  • sloc: python: 961; makefile: 3
file content (19 lines) | stat: -rwxr-xr-x 496 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from setuptools import setup

# this loads the version string into __version__
with open('urwidtrees/version.py') as f:
    exec(f.read())

setup(
    name='urwidtrees',
    version=__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'],
)