Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pythonista-cloud/server
The index powering pythonista-cloud, the package manager for Pythonista.
https://github.com/pythonista-cloud/server
Last synced: about 2 months ago
JSON representation
The index powering pythonista-cloud, the package manager for Pythonista.
- Host: GitHub
- URL: https://github.com/pythonista-cloud/server
- Owner: pythonista-cloud
- Created: 2016-07-08T15:27:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-03T23:09:54.000Z (over 8 years ago)
- Last Synced: 2024-08-08T00:44:15.615Z (5 months ago)
- Language: Python
- Size: 23.4 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- project-awesome - pythonista-cloud/server - The index powering pythonista-cloud, the package manager for Pythonista. (Python)
README
# pythonista.cloud Server [![Build Status](https://travis-ci.org/pythonista-cloud/server.svg?branch=master)](https://travis-ci.org/pythonista-cloud/server) [![Coverage Status](https://coveralls.io/repos/github/pythonista-cloud/server/badge.svg?branch=master)](https://coveralls.io/github/pythonista-cloud/server?branch=master)
This package manages the index of modules. Most of the heavy lifting is done by [`CouchDB`](https://couchdb.apache.org), but the server still contains:
- Code for submitting packages
- A Python script that enforces the structure of packages as they are submitted.### Package structure
Packages are represented as JSON. The following fields are supported in your module's JSON file:
- `name` (required) - the name of your module
- `url` (required) - a link pointing to the GitHub repo where your module lives
- `entry_point` (required) - the path inside your GitHub repo where your package actually lives. This should point to your main `.py` file if you have a single-file module, and to your package directory if you have a multi-file package.
- `py_versions` - either `[2]`, `[3]`, or `[2, 3]` depending on which major Python versions your module supports