public
Description: You keep personal data in all sorts of places on the internets. Jellyroll brings them together onto your own site.
Homepage:
Clone URL: git://github.com/jacobian/jellyroll.git
jacobian (author)
Fri Aug 28 15:28:12 -0700 2009
commit  337be479c7b460fce78fad256b20d6badbeceac5
tree    1c151de4b1bf3bbb6f4f60a00420396fb0c66b21
parent  5cd17a77c98e84a232b032484ee702ba6c0f676a parent  912aa84035dec8c86163792df3ec41aae81712d3
jellyroll / setup.py
100644 40 lines (34 sloc) 1.153 kb
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
import os
from setuptools import setup, find_packages
 
def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()
 
setup(
    name = "jellyroll",
    version = "1.0",
    url = 'http://github.com/jacobian/jellyroll',
    license = 'BSD',
    description = "You keep personal data in all sorts of places on the internets. Jellyroll brings them together onto your own site.",
    long_description = read('README.rst'),
 
    author = 'Jacob Kaplan-Moss',
    author_email = 'jacob@jacobian.org',
 
    packages = find_packages('src'),
    package_dir = {'': 'src'},
    
    install_requires = [
        'django-tagging==0.3pre',
        'Django>=1.1',
        'PIL',
        'python-dateutil',
        'pytz==2009e',
        'setuptools',
    ],
    dependency_links = ['http://pypi.pinaxproject.com/'],
 
    classifiers = [
        'Development Status :: 4 - Beta',
        'Framework :: Django',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Internet :: WWW/HTTP',
    ]
)