-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
62 lines (51 loc) · 1.88 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os, sys, runpy
pkg_root = os.path.dirname(__file__)
feedjack = type( 'ModuleVars', (object,),
runpy.run_path(os.path.join(pkg_root, 'feedjack', '__init__.py')) )
# Error-handling here is to allow package to be built w/o README included
try: readme = open(os.path.join(pkg_root, 'README.rst')).read()
except IOError: readme = ''
setup(
name='Feedjack',
version=feedjack.__version__,
author='Gustavo Picón, Mike Kazantsev',
author_email='[email protected]',
license='BSD',
keywords=[
'feed', 'aggregator', 'reader', 'planet',
'syndication', 'subscribe', 'news', 'web',
'rss', 'atom', 'rdf', 'opml', 'django', 'feedparser' ],
url=feedjack.__url__,
description='Multisite Feed Agregator (Planet) or personal feed reader',
long_description=readme,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Software Development :: Libraries :: Python Modules' ],
install_requires=['feedparser', 'Django >= 1.8'],
extras_require={
'old_db_migration': ['South'],
'themes.fern': ['lxml'],
'themes.plain': ['lxml'] },
zip_safe=False,
packages=find_packages(),
include_package_data=True, # uses git and MANIFEST.in
entry_points={
'console_scripts': ['feedjack_update=feedjack.fjupdate:main'] } )