forked from Fantomas42/django-blog-zinnia
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
43 lines (36 loc) · 1.76 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
import os
from setuptools import setup, find_packages
import gstudio
setup(name='django-gstudio',
version=gstudio.__version__,
description='A collaborative blogspace for constructing and publishing semantic knowledge networks and ontologies',
long_description='\n'.join([open('README.rst').read(),
open(os.path.join('docs', 'install.rst')).read(),
open(os.path.join('docs', 'changelog.rst')).read(),]),
keywords='django, blog, weblog, zinnia, post, news, gnowsys, gnowledge, semantic, networks, ontolgies',
author=gstudio.__author__,
author_email=gstudio.__email__,
url=gstudio.__url__,
packages=find_packages(exclude=['demo','demo.graphviz','demo.graphviz.management','demo.graphviz.management.commands']),
classifiers=[
'Framework :: Django',
'Development Status :: 3 - Development/Alpha',
'Environment :: Web Environment',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules',],
license=gstudio.__license__,
include_package_data=True,
zip_safe=False,
install_requires=['BeautifulSoup>=3.2.0',
'django-mptt>=0.4.2',
'django-tagging>=0.3.1',
'django-xmlrpc>=0.1.3',
'pyparsing>=1.5.5',
'django-reversion>=1.5.1',
'django-grappelli>=2.3.4',
'django-ratings>=0.3.6',
'rdflib>=3.0.0',
])