-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.02 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
from setuptools import setup
import subprocess
import os.path
long_description = (open('README.rst').read() +
open('CHANGES.rst').read() +
open('TODO.rst').read())
setup(
name='django-jsforms',
version='0.0.2',
description='Javascript Fields and Widgets for Django.',
author='Jeff Schwaber, LoFi Art',
author_email='freyley@gmail.com',
long_description=long_description,
url='',
packages=['jsforms'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
#test_suite='tests.runtests.runtests',
package_data={
'jsforms': [
'static/js/jsforms/*/*.js',
'static/jsforms/js/*.js',
'*.py',
'migrations/*.py',
]
},
)