-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 722 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='django-jeditable',
version='0.1.0',
description='Inplace editing with the Django.',
author='Neskie Manuel',
author_email='neskiem@gmail.com',
url='http://github.com/neskie/django-jeditable/',
packages=find_packages(),
package_data = {'jeditable': ['templates/jeditable/*.html',
'templatetags/*.py']},
classifiers=[
'Development Status :: 1 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)