-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·56 lines (52 loc) · 2.12 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
#
# Setup file for Sphene Community Tools
# Provided by Dennis @ allymbrain.com:
# http://allmybrain.com/2009/10/21/the-python-install-system-needs-an-overhaul/
#
from setuptools import setup, find_packages
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Natural Language :: German',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Communications',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(
name='django-sct',
version='0.90.0.dev1',
author='Herbert Poul',
author_email='[email protected]',
url='http://sct.sphene.net/',
description='SCT (Sphene Community Tools) is a collection of Django applications for communities. It currently consists of a Forum and Wiki application which are applicable for communities, support forums, blogs, etc.',
long_description='''SCT (Sphene Community Tools) is a collection of Django applications that are
designed to be easily pluggable into any Django project. It currently consists
of a Wiki and a Forum application. It contains an example project that allows
users to create a community Web site containing the Wiki and Board applications
without any further coding/configuration changes.''',
python_requires='>=3.6',
install_requires=[
'Django>=2.0.1',
'Pillow>=4.0.0',
'itsdangerous>=0.24',
'simplejson>=3.0.0',
'requests>=2.19.0',
],
classifiers=CLASSIFIERS,
license='BSD License',
packages=['sphene'],
include_package_data=True,
zip_safe=False,
package_dir={'': 'sphenecoll'},
)