-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 794 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 794 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
from setuptools import setup
from setuptools import find_packages
setup(
name='geojson_rest',
version='5.6.1',
author='Kristoffer Snabb',
url='https://github.com/geonition/django_geojson_rest',
packages=find_packages(),
include_package_data=True,
package_data = {
"geojson_rest": [
"templates/*.js",
"templates/*.html",
"templates/admin/geojson_rest/feature/view_features.html",
"sql/*.sql"
],
},
install_requires=['django',
'psycopg2',
'shapely',
'geonition_utils'],
dependency_links = [
'https://github.com/geonition/django_geonition_utils/tarball/4.0.1#egg=geonition_utils-4.0.1'
],
zip_safe=False
)