Files
i2p.newsxml/setup.py
2015-06-07 03:20:23 +00:00

14 lines
292 B
Python

from setuptools import setup
with open('etc/reqs.txt', 'rb') as infile:
install_requires = infile.read().split()
setup(
name='feedgen-i2p',
description='I2P Atom extension for feedgen',
author='str4d',
install_requires=install_requires,
packages=['feedgen.ext'],
)