1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/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'],
extras_require={
'docs': [
'mock;python_version<"3.3"',
],
},
)
|