-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
44 lines (40 loc) · 1.15 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
import os
from setuptools import setup, find_packages
media_files = []
for dirpath, dirnames, filenames in os.walk('src/django_yaba/media'):
media_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]])
setup(
name = "django-yaba",
version = "0.2.7",
author = "Mark Rogers",
author_email = "f4nt@f4ntasmic.com",
url = "http://www.f4ntasmic.com",
packages = find_packages('.'),
package_dir = {'':'.'},
data_files = media_files,
package_data = {
'django_yaba':
['templates/admin/*.html',
'templates/blog/*.html',
'templates/comments/*.html',
'templates/feeds/*.html']
},
include_package_data=True,
license = "BSD License",
keywords = "django yaba blog",
description = "Yet Another Blog Application",
install_requires=[
'setuptools',
'python-twitter',
'twitter',
'simplejson',
'feedparser',
'django-disqus',
'django-tagging',
],
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
'Programming Language :: Python',
]
)