This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add base project packaging configuration. Note: setuptools seems to have issues when dealing with projects not located in the project's root [1]. Let's be pragmatic and remove the src/ directory. 1. pypa/setuptools#1136
- Loading branch information
Showing
10 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
;; | ||
;; Open edX xAPI package | ||
;; | ||
[metadata] | ||
name = openedx-xapi | ||
version = 0.0.1 | ||
description = Open edX xAPI plugin | ||
long_description = file:README.md | ||
long_description_content_type = text/markdown | ||
author = Open FUN (France Universite Numerique) | ||
author_email = fun.dev@fun-mooc.fr | ||
url = https://github.com/openfun/openedx-xapi | ||
license = AGPL-3.0 | ||
keywords = Django, xAPI, Open edX | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Framework :: Django | ||
Framework :: Django :: 1.11 | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) | ||
Natural Language :: English | ||
Programming Language :: Python :: 2 | ||
Programming Language :: Python :: 2.7 | ||
|
||
[options] | ||
include_package_data = true | ||
packages = find: | ||
zip_safe = false | ||
|
||
[wheel] | ||
universal = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
from setuptools import setup | ||
|
||
setup() |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.