-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (22 loc) · 969 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Setup file for feedstail
from setuptools import setup
setup( name = "feedstail"
, description = "A tail-f-like utility for feeds"
, long_description = open('README.rst').read()
, license = "GNU General Public License v3"
, url = "https://github.com/Psycojoker/feedstail"
, author = "Romain Gauthier"
, author_email = "[email protected]"
, version = '0.5.1'
, scripts = ['bin/feedstail']
, packages = ['feedstail']
, data_files = [('', ['README.rst', 'LICENSE.txt'])]
, install_requires = ['argparse', 'FeedParser']
, classifiers =
[ "Development Status :: 3 - Alpha"
, "License :: OSI Approved :: GNU General Public License (GPL)"
, "Operating System :: OS Independent"
, "Programming Language :: Python :: 2.7"
, "Topic :: Utilities"
]
)