-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 989 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (31 loc) · 989 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
30
31
32
33
34
35
36
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'VERSION')) as version_file:
version = version_file.read().strip()
setup(
name='django-geonode-mapstore-client',
version=version,
author='Alessio Fabiani',
author_email='alessio.fabiani@gmail.com',
url='https://github.com/GeoNode/geonode-mapstore-client',
description="Use GeoNode client in your django projects",
long_description=open(os.path.join(here, 'README.md')).read(),
license='BSD, see LICENSE file.',
install_requires=[
"django-mapstore-adapter >= 0.1.0",
],
# adding packages
packages=find_packages(),
# trying to add files...
include_package_data = True,
package_data = {
'': ['*.*'],
'': ['static/*.*'],
'static': ['*.*'],
'': ['templates/*.*'],
'templates': ['*.*'],
},
zip_safe = False,
classifiers = [],
)