Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
aa
wiki
Commits
bb746dc0
Commit
bb746dc0
authored
Dec 12, 2012
by
Alexandre Leray
Browse files
Added setup.py
parent
fa24fc2f
Changes
2
Hide whitespace changes
Inline
Side-by-side
MANIFEST.in
0 → 100644
View file @
bb746dc0
include AUTHORS COPYING README
recursive-include aawiki *.html *.js *.css *.json
setup.py
0 → 100755
View file @
bb746dc0
#! /usr/bin/env python2
from
setuptools
import
setup
setup
(
name
=
'aawiki'
,
version
=
'0.1'
,
author
=
'The active archives contributors'
,
author_email
=
'alexandre@stdin.fr'
,
description
=
(
'Active Archives inverts the paradigm of uploading resources'
,
'into a centralized server and instead allows resources to remain'
,
'"active", in-place and online. Caching and proxy functionality allow'
,
'light-weight) copies of resources to be manipulated and preserved'
,
'even, as the original sources change or become (temporarily)'
,
'unavailable.'
),
url
=
'http://activearchives.org/'
,
packages
=
[
'aawiki'
,
'aawiki.mdx'
,
'aawiki.management'
,
'aawiki.templatetags'
],
dependency_links
=
[
'git+git://git.constantvzw.org/aa.core2.git#egg=aacore-0.1'
,
'git+git://git.constantvzw.org/aa.rdfutils.git#egg=rdfutils-0.1'
,
],
install_requires
=
[
'django>=1.4,<1.5'
,
'django-tastypie'
,
'pygit2'
,
'html5lib'
,
'lxml'
,
'feedparser'
,
'html5tidy'
,
'Markdown==2.1.0'
,
'mdx-cite==1.0'
,
'mdx-del-ins==1.0'
,
'mdx-outline==1.02'
,
'mdx-semanticdata==1.0'
,
'mdx-semanticwikilinks==1.1'
,
],
classifiers
=
[
'Development Status :: 2 - Pre-Alpha'
,
'Operating System :: OS Independent'
,
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)'
,
'Environment :: Web Environment'
,
'Programming Language :: Python'
,
'Topic :: Internet :: WWW/HTTP :: Indexing/Search'
,
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
,
'Topic :: Text Processing :: Indexing'
,
'Topic :: Text Processing :: Markup'
]
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment