mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
14 lines
338 B
Python
14 lines
338 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='pynntp',
|
|
version='0.8.4',
|
|
description='NNTP Library (including compressed headers)',
|
|
author='Byron Platt',
|
|
author_email='byron.platt@gmail.com',
|
|
license='GPL3',
|
|
url='https://github.com/greenbender/pynntp',
|
|
packages=['nntp'],
|
|
install_requires=['dateutils'],
|
|
)
|