forked from geonition/geoforms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 856 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 856 Bytes
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
from setuptools import setup
from setuptools import find_packages
setup(
name='geoforms',
version='6.0-dev',
author='Kristoffer Snabb',
url='https://github.com/geonition/geoforms',
packages=find_packages(),
include_package_data=True,
package_data = {
"geoforms": [
"templates/*.html",
"templates/*.api.js",
"templates/jstranslations.txt",
"templates/help/*.html",
"templates/admin/geoforms/geoformelement/*.html",
"locale/*/LC_MESSAGES/*.po",
"locale/*/LC_MESSAGES/*.mo",
"static/js/*",
"static/css/*.css",
"static/css/images/*.png"
],
},
zip_safe=False,
install_requires=['django',
'django-modeltranslation<0.6',
'beautifulsoup4'],
)