-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1.26 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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'django-backlinks',
version = '0.1a1',
license = 'BSD',
description = 'A generic linkbacks app for Django',
long_description = read('README'),
author = 'Jeff Kistler',
author_email = '[email protected]',
url = 'https://bitbucket.org/jeffkistler/django-backlinks',
packages = ['backlinks',
'backlinks.templatetags',
'backlinks.tests',
'backlinks.utils',
'backlinks.pingback',
'backlinks.pingback.templatetags',
'backlinks.trackback',
'backlinks.trackback.templatetags'],
package_dir = {'': 'src'},
package_data = {'backlinks': ['fixtures/*',],
'backlinks.trackback': ['templates/backlinks/trackback/*']},
classifiers = [
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)