Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-submissions
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
edx-submissions
Commits
8c1d97d6
Commit
8c1d97d6
authored
Jun 05, 2014
by
Will Daly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added setup.py
parent
00f970c1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
52 additions
and
2 deletions
+52
-2
.travis.yml
+1
-1
README.md
+1
-1
setup.py
+50
-0
No files found.
.travis.yml
View file @
8c1d97d6
...
...
@@ -7,6 +7,6 @@ before_script:
-
"
pip
install
coveralls"
script
:
-
"
python
manage.py
test"
#
- "python setup.py install"
-
"
python
setup.py
install"
after_success
:
coveralls
README.md
View file @
8c1d97d6
submissions
edx-
submissions
===========
API for creating submissions and scores
setup.py
0 → 100644
View file @
8c1d97d6
#!/usr/bin/env python
from
setuptools
import
setup
def
is_requirement
(
line
):
"""
Return True if the requirement line is a package requirement;
that is, it is not blank, a comment, or editable.
"""
# Remove whitespace at the start/end of the line
line
=
line
.
strip
()
# Skip blank lines, comments, and editable installs
return
not
(
line
==
''
or
line
.
startswith
(
'-r'
)
or
line
.
startswith
(
'#'
)
or
line
.
startswith
(
'-e'
)
or
line
.
startswith
(
'git+'
)
)
def
load_requirements
(
*
requirements_paths
):
"""
Load all requirements from the specified requirements files.
Returns a list of requirement strings.
"""
requirements
=
set
()
for
path
in
requirements_paths
:
requirements
.
update
(
line
.
strip
()
for
line
in
open
(
path
)
.
readlines
()
if
is_requirement
(
line
)
)
return
list
(
requirements
)
setup
(
name
=
'edx-submissions'
,
version
=
'0.0.1'
,
author
=
'edX'
,
url
=
'http://github.com/edx/submissions.git'
,
license
=
'AGPL'
,
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: GNU Affero General Public License v3'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python'
,
],
packages
=
[
'submissions'
],
install_requires
=
load_requirements
(
'requirements.txt'
),
tests_require
=
load_requirements
(
'test-requirements.txt'
),
)
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