Skip to content
This repository was archived by the owner on Nov 20, 2019. It is now read-only.

Commit cc4f232

Browse files
committed
📦(core) add project packaging
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
1 parent e79156c commit cc4f232

File tree

10 files changed

+37
-0
lines changed

10 files changed

+37
-0
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.

setup.cfg

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
;;
2+
;; Open edX xAPI package
3+
;;
4+
[metadata]
5+
name = openedx-xapi
6+
version = 0.0.1
7+
description = Open edX xAPI plugin
8+
long_description = file:README.md
9+
long_description_content_type = text/markdown
10+
author = Open FUN (France Universite Numerique)
11+
author_email = [email protected]
12+
url = https://github.com/openfun/openedx-xapi
13+
license = AGPL-3.0
14+
keywords = Django, xAPI, Open edX
15+
classifiers =
16+
Development Status :: 3 - Alpha
17+
Framework :: Django
18+
Framework :: Django :: 1.11
19+
Intended Audience :: Developers
20+
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
21+
Natural Language :: English
22+
Programming Language :: Python :: 2
23+
Programming Language :: Python :: 2.7
24+
25+
[options]
26+
include_package_data = true
27+
packages = find:
28+
zip_safe = false
29+
30+
[wheel]
31+
universal = 1

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
from setuptools import setup
4+
5+
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.

0 commit comments

Comments
 (0)