Project

Profile

Help

Pulp Python Roadmap » History » Sprint/Milestone 7

dalley, 10/25/2017 06:26 PM

1 1 dalley
# Pulp Python Roadmap
2
3 7 dalley
## This is a living document that is moving towards a long term plan to develop pulp_python 3.0 and beyond.
4 6 dalley
5 1 dalley
## Pulp Python Use Cases
6
7 3 dalley
### \[3.0\] Synced Package Index use case:
8 1 dalley
9 2 dalley
> As a user, I can configure an importer to sync a list of projects
10
>
11
>> Syncing a project includes all releases  
12
>> Syncing a release includes all distribution packages (all types)
13
>
14
> As a user, I can publish a repository:
15
>
16
>> Published Distributions are consumable by pip  
17
>> Published projects are consumable by other Pulps  
18
>> Published projects will include all releases and distributions
19 1 dalley
20 2 dalley
### Upload Use Case:
21 1 dalley
22 4 dalley
> **\[3.0\]** As a user, I can upload individual distribution packages (name, version, platform)
23 2 dalley
>
24
>> As a user I can upload an egg  
25
>> As a user I can upload a wheel  
26
>> As a user I can upload a sdist
27
>
28 4 dalley
> **\[3.1+\]** A twine user can publish a distribution package to Pulp
29 1 dalley
30 4 dalley
### **\[3.1+\]** Granular Sync
31 1 dalley
32 2 dalley
> Blacklist: As a user, I can disinclude some content of a project
33
>
34
>> By specifying (release, distribution package)  
35
>> I can disinclude content by distribution type
36
>
37
> Whitelist (Curated Package index Use Case) As a user, I can sync packages that reproduce a specific environment
38
>
39
>> From the output of pip freeze (loose use case)  
40
>> With the name, exact versions, and distribution type (tight use case)
41 1 dalley
42 4 dalley
### **\[3.1+\]** PyPI Publish use case
43 1 dalley
44 2 dalley
> As a user, I can publish a release to a remote package index
45 1 dalley
>
46 2 dalley
>> As a user, I can configure Pulp to publish to PyPI with my auth credentials
47 1 dalley
48 4 dalley
### **\[3.1+\]** Cache Use Case:
49 1 dalley
50 2 dalley
> As a user, I can use Pulp as a PyPI cache.
51 1 dalley
52
## Glossary:
53
54
### Project
55
56
> A library, framework, script, plugin, application, or collection of data or other resources, or some combination thereof that is intended to be packaged into a Distribution.  
57
> \[ https://packaging.python.org/glossary/#term-project \]
58
59
### Package Index:
60
61 2 dalley
> A repository of distributions with a web interface to automate package discovery and consumption. (this should align to a pulp repo). A Package Index is assumed to implement the PyPI APIs
62 1 dalley
63
### Release
64
65
> A snapshot of a Project at a particular point in time, denoted by a version identifier.  
66
> Making a release may entail the publishing of multiple Distributions. For example, if version 1.0 of a project was released, it could be available in both a source distribution format and a Windows installer distribution format.
67
68
### Distribution Package
69
70 5 dalley
> "Distribution" for short. If we mean linux, we will say "distro"  
71
> A versioned archive file that contains Python packages, modules, and other resource files that are used to distribute a Release. The archive file is what an end-user will download from the internet and install. A project may contain many releases, and releases may contain many distribution packages. Can be type sdist, bdist, etc. "Distribution package" is used instead of "package" to avoid confusion with "import packages" or linux "distributions".
72 1 dalley
73
## Relevant PEPs:
74
75
  - https://www.python.org/dev/peps/pep-0241/ Final (Original Metadata)
76
  - https://www.python.org/dev/peps/pep-0301/ Final (HTTP API)
77
  - https://www.python.org/dev/peps/pep-0314/ Final (Metadata 1.1)
78
  - https://www.python.org/dev/peps/pep-0345/ Accepted (Metadata 1.2)
79
  - https://www.python.org/dev/peps/pep-0427/ Accepted (Wheel 1.0) 
80
  - https://www.python.org/dev/peps/pep-0491/ Draft (Wheel 1.9)
81
  - https://www.python.org/dev/peps/pep-0426/ Deferred (Metadata 2.0)
82
  - https://www.python.org/dev/peps/pep-0459/ Deferred (Standard Metadata Extensions)
83
  - https://www.python.org/dev/peps/pep-0503/ Accepted (Simple API)
84
  - https://www.python.org/dev/peps/pep-0508/ Active (Dep specification)