-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·44 lines (36 loc) · 1.07 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
#!/usr/bin/env python
"""
Install django-formset-js using setuptools
"""
from djangoformsetjs import __version__
with open('README') as f:
readme = f.read()
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-formset-js',
version=__version__,
description='Extend Django formsets with JavaScript',
long_description=readme,
author='Ionata Web Solutions',
author_email='[email protected]',
url='https://bitbucket.org/ionata/django-formset-js',
install_requires=['Django', 'django-jquery-js'],
zip_safe=False,
packages=find_packages(),
include_package_data=True,
package_data={ },
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
],
license='BSD',
)