forked from caioariede/django-location-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.22 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
39
40
41
42
43
from setuptools import setup, find_packages
VERSION = __import__('location_field').__version__
setup(
name='django-location-field',
version=VERSION,
description="Location field for Django",
long_description="This module provides a location field for Django applications.",
author="Caio Ariede",
author_email="[email protected]",
url="http://github.com/caioariede/django-location-field",
license="MIT",
zip_safe=False,
platforms=["any"],
packages=find_packages(),
package_data={'location_field': [
'static/location_field/js/*',
'templates/location_field/*',
]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
],
include_package_data=True,
install_requires=[
'Django>=1.7',
'six',
],
tests_require=[
'pyquery',
],
test_suite="runtests.runtests",
)