-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (30 loc) · 883 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
from setuptools import setup
from setuptools import find_packages
setup(
name='plan_proposals',
version='4.3.2',
author='Kristoffer Snabb',
url='https://github.com/geonition/plan_proposal',
packages=find_packages(),
include_package_data=True,
package_data = {
"plan_proposals": [
"templates/*.html",
"templates/*.js",
"static/css/*.css",
"static/js/*.js",
"static/js/libs/*.js",
"static/img/*.jpg",
"static/img/*.gif",
"static/img/*.png",
"static/img/buttons/*.png",
"static/img/placemarks/*.png",
"static/img/test/*.png",
"static/cursors/*.cur",
"locale/*/LC_MESSAGES/*.po",
"locale/*/LC_MESSAGES/*.mo",
],
},
zip_safe=False,
install_requires=['django'],
)