Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
1dbc232c
Commit
1dbc232c
authored
Jan 19, 2014
by
Will Daly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added setup.py to make packages installable
parent
286e4752
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
0 deletions
+36
-0
.travis.yml
+1
-0
AUTHORS
+3
-0
MANIFEST.in
+4
-0
setup.py
+28
-0
No files found.
.travis.yml
View file @
1dbc232c
...
@@ -7,3 +7,4 @@ install:
...
@@ -7,3 +7,4 @@ install:
script
:
script
:
-
"
python
manage.py
test"
-
"
python
manage.py
test"
-
"
python
manage.py
harvest"
-
"
python
manage.py
harvest"
-
"
python
setup.py
install"
AUTHORS
0 → 100644
View file @
1dbc232c
Stephen Sanchez <steve@edx.org>
Joe Blaylock <jrbl@stanford.edu>
Will Daly <will@edx.org>
MANIFEST.in
0 → 100644
View file @
1dbc232c
include requirements/base.txt
include LICENSE
include AUTHORS
include README.md
setup.py
0 → 100644
View file @
1dbc232c
#!/usr/bin/env python
from
setuptools
import
setup
PACKAGES
=
[
'common_grading'
,
'peer_grading'
]
REQUIREMENTS
=
[
line
.
strip
()
for
line
in
open
(
"requirements/base.txt"
)
.
readlines
()
]
setup
(
name
=
'edx-tim'
,
version
=
'0.0.1'
,
author
=
'edX'
,
url
=
'http://github.com/edx/edx-tim'
,
description
=
'edx-tim'
,
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
=
PACKAGES
,
install_requires
=
REQUIREMENTS
,
)
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