-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
38 lines (35 loc) · 1.05 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
from setuptools import setup, find_packages
import os
version = __import__('store_locator').__version__
install_requires = [
'setuptools',
'django',
'django-cms',
]
setup(
name = "django-cms-storelocator",
version = version,
url = 'http://github.com/megamark16/django-cms-storelocator',
license = 'BSD',
platforms=['OS Independent'],
description = "A store locator extension for Django CMS",
author = "Mark Ransom",
author_email = '[email protected]',
packages=find_packages(),
install_requires = install_requires,
include_package_data=True,
zip_safe=False,
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
package_dir={
'store_locator': 'store_locator',
},
)