forked from pancentric/django-cms-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (35 loc) · 1023 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
30
31
32
33
34
35
36
37
38
import metadata as m
from setuptools import setup, find_packages
install_requires = [
'setuptools',
'Django>=1.3',
'django-cms>=2.1.3',
'django-classy-tags>=0.3.2',
'django-haystack>=2.0.0',
]
setup(
name=m.name,
version=m.version,
url=m.project_url,
license=m.license,
platforms=['OS Independent'],
description=m.description,
author=m.author,
author_email=m.author_email,
packages=find_packages(),
install_requires=install_requires,
include_package_data=True, #Accept all data files and directories matched by MANIFEST.in or found in source control.
package_dir={
m.package_name:m.package_name,
},
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',
]
)