forked from philippbosch/django-geoposition
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
38 lines (36 loc) · 1.3 KB
/
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
32
33
34
35
36
37
38
# coding: utf-8
import os.path
from setuptools import setup, find_packages
setup(
name='django-geoposition-2',
version=__import__('geoposition').__version__,
description=
'Django model field that can hold a geoposition, and corresponding admin widget.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='Dario Castañé',
author_email='[email protected]',
url='http://github.com/imdario/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',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
])