├── .gitignore ├── LICENSE ├── README.md ├── debianized-devpi ├── README.md └── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── devpi.links │ ├── devpi.triggers │ └── rules └── doc └── static ├── cat-face.svg ├── logo-180.png ├── logo-32.png ├── logo.svg ├── repo-structure.graphml └── repo-structure.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/README.md -------------------------------------------------------------------------------- /debianized-devpi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/debianized-devpi/README.md -------------------------------------------------------------------------------- /debianized-devpi/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/debianized-devpi/debian/changelog -------------------------------------------------------------------------------- /debianized-devpi/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debianized-devpi/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/debianized-devpi/debian/control -------------------------------------------------------------------------------- /debianized-devpi/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/debianized-devpi/debian/copyright -------------------------------------------------------------------------------- /debianized-devpi/debian/devpi.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/debianized-devpi/debian/devpi.links -------------------------------------------------------------------------------- /debianized-devpi/debian/devpi.triggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/debianized-devpi/debian/devpi.triggers -------------------------------------------------------------------------------- /debianized-devpi/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/debianized-devpi/debian/rules -------------------------------------------------------------------------------- /doc/static/cat-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/doc/static/cat-face.svg -------------------------------------------------------------------------------- /doc/static/logo-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/doc/static/logo-180.png -------------------------------------------------------------------------------- /doc/static/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/doc/static/logo-32.png -------------------------------------------------------------------------------- /doc/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/doc/static/logo.svg -------------------------------------------------------------------------------- /doc/static/repo-structure.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/doc/static/repo-structure.graphml -------------------------------------------------------------------------------- /doc/static/repo-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhermann/devpi-enterprisey/HEAD/doc/static/repo-structure.png --------------------------------------------------------------------------------