Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xblock-utils
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
xblock-utils
Commits
fddf0ab4
Commit
fddf0ab4
authored
Oct 02, 2014
by
dragonfi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create xblockutils package
parent
ad4f4571
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
0 deletions
+25
-0
.gitignore
+2
-0
requirements.txt
+7
-0
setup.py
+16
-0
xblockutils/__init__.py
+0
-0
No files found.
.gitignore
0 → 100644
View file @
fddf0ab4
*.pyc
xblock_utils.egg-info
requirements.txt
0 → 100644
View file @
fddf0ab4
-e .
# XBlock
# This is not in/from PyPi, since it moves fast
-e git+https://github.com/edx/XBlock.git@f0e53538be7ce90584a03cc7dd3f06bd43e12ac2#egg=XBlock
setup.py
0 → 100644
View file @
fddf0ab4
"""Set up for xblock-utils"""
import
os
import
os.path
from
setuptools
import
setup
setup
(
name
=
'xblock-utils'
,
version
=
'0.1a0'
,
description
=
'Various utilities for XBlocks'
,
packages
=
[
'xblockutils'
,
],
install_requires
=
[
'XBlock'
,
]
)
xblockutils/__init__.py
0 → 100644
View file @
fddf0ab4
Write
Preview
Markdown
is supported
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