forked from philippbosch/django-geoposition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 949 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
from setuptools import setup, find_packages
setup(
name='django-geoposition',
version=__import__('geoposition').__version__,
description='Django model field that can hold a geoposition, and corresponding admin widget.',
author='Philipp Bosch',
author_email='[email protected]',
url='http://github.com/philippbosch/django-geoposition',
packages=find_packages(),
zip_safe=False,
package_data={
'geoposition': [
'locale/*/LC_MESSAGES/*',
'templates/geoposition/widgets/*.html',
'static/geoposition/*',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
install_requires=['django-appconf >= 0.4'],
)