-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 950 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
28
29
30
31
32
import os
from setuptools import setup
setup(
name = "django-improved-inlines",
version = "0.2.2",
url = 'http://github.com/issackelly/django-improved-inlines',
license = 'BSD',
description = "Inline object rendering for django, based on django-basic-apps + filters + templates",
long_description=open("README.rst").read(),
author = 'Issac Kelly',
author_email = '[email protected]',
packages = [
'improved_inlines',
'improved_inlines.templatetags',
],
requires = [
'BeautifulSoup',
],
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',
],
install_requires=['beautifulsoup>=3.2.0',],
)