forked from django-rdf-tools/coop_cms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
59 lines (52 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""package the lib"""
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
VERSION = __import__('coop_cms').__version__
import os
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name='apidev-coop_cms',
version=VERSION,
description='Small CMS built around a tree navigation open to any django models',
packages=find_packages(),
include_package_data=True,
author='Luc Jean',
author_email='[email protected]',
license='BSD',
zip_safe=False,
install_requires=[
'django>=4.2,<5.0',
'django-extensions',
'sorl-thumbnail',
'apidev-coop_colorbox >= 1.6.0',
'apidev-coop_bar >= 1.6.0',
'coop_html_editor >= 1.4.0',
'feedparser',
'beautifulsoup4',
'model_mommy',
'unicode-slugify',
],
long_description=open('README.rst').read(),
url='https://github.com/ljean/coop_cms/',
download_url='https://github.com/ljean/coop_cms/tarball/master',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Natural Language :: English',
'Natural Language :: French',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
)